diff --git a/code/__HELPERS/_macros.dm b/code/__HELPERS/_macros.dm index 4628a857dbe..d08863da858 100644 --- a/code/__HELPERS/_macros.dm +++ b/code/__HELPERS/_macros.dm @@ -99,6 +99,10 @@ #define isvehicle(A) (istype(A, /obj/structure/bed/chair/vehicle)) +#define issilicatesprayer(A) (istype(A, /obj/item/device/silicate_sprayer)) + +#define iswindow(A) (istype(A, /obj/structure/window)) + //Macros for antags #define isvampire(H) ((H.mind in ticker.mode.vampires) || H.mind.vampire) diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index 2bdbc0ef5de..bd5dc0fed98 100755 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -228,6 +228,14 @@ var/list/all_supply_groups = list("Supplies","Clothing","Security","Hospitality" containername = "fuel tank crate" group = "Supplies" +/datum/supply_packs/silicatetank + name = "Silicate tank crate" + contains = list(/obj/structure/reagent_dispensers/silicate) + cost = 8 + containertype = /obj/structure/largecrate + containername = "silicate tank crate" + group = "Supplies" + /datum/supply_packs/mining name = "Mining Equipment" contains = list(/obj/item/weapon/pickaxe/drill, diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 19e1bb61673..efecee9cc1c 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -43,6 +43,7 @@ new /obj/item/device/analyzer(), \ new /obj/item/device/t_scanner(), \ new /obj/item/weapon/pickaxe/shovel/spade(), \ + new /obj/item/device/silicate_sprayer/empty(), \ ), "Containers"=list( new /obj/item/weapon/reagent_containers/glass/beaker(), \ diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 065f58b021a..5221f6889f0 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -1609,6 +1609,7 @@ var/global/num_vending_terminals = 1 /obj/item/device/t_scanner = 5, /obj/item/weapon/screwdriver = 5, /obj/item/weapon/solder = 3, + /obj/item/device/silicate_sprayer = 2 ) contraband = list( /obj/item/weapon/weldingtool/hugetank = 2, diff --git a/code/game/objects/items/devices/silicate sprayer.dm b/code/game/objects/items/devices/silicate sprayer.dm new file mode 100644 index 00000000000..aff328dd096 --- /dev/null +++ b/code/game/objects/items/devices/silicate sprayer.dm @@ -0,0 +1,164 @@ +// Silicate sprayer, load it with silicate, and you can fix damaged windows with it! +// No not the OS, nobody can fix that trainwreck. + +#define SILICATE_PER_DAMAGE 0.05 // Units of silicate used to repair 1 point of damage. +#define MAX_WINDOW_HEALTH_MULTIPLIER 2 // How many times of the original health you can add to a window with the advanced silicate sprayer. +#define SILICATE_PER_REINFORCE 0.1 // Silicate used to reinforce 1 unit of health on a window. +#define MODE_REPAIR 0 +#define MODE_REINFORCE 1 + +/obj/item/device/silicate_sprayer + name = "\improper Silicate Sprayer" + desc = "Used to repair damaged windows with silicate." + + icon = 'icons/obj/device.dmi' + icon_state = "silicate sprayer" + + w_class = 2 + + origin_tech = "engineering=2" + + var/start_filled = TRUE + var/max_silicate = 50 + var/silicate_per_state = 5 // Used in the calculation for the icon states for the meter. + +// Empty for in the autolathe. +/obj/item/device/silicate_sprayer/empty + start_filled = FALSE + +/obj/item/device/silicate_sprayer/New() + . = ..() + create_reagents(max_silicate) + + if(start_filled) + reagents.add_reagent("silicate", max_silicate) + + update_icon() + +/obj/item/device/silicate_sprayer/proc/get_amount() + return reagents.get_reagent_amount("silicate") + +/obj/item/device/silicate_sprayer/examine(var/mob/user) + . = ..() + user << "It contains [get_amount()]/[max_silicate] units of silicate!" + +/obj/item/device/silicate_sprayer/proc/remove_silicate(var/amount = 0) + reagents.remove_reagent("silicate", amount) + + update_icon() + +/obj/item/device/silicate_sprayer/update_icon() + overlays.Cut() + + var/amount = get_amount() + + if(!amount) + return + + var/i = 0 + + // Floor if above 50%, else we Ceil. + if(amount >= max_silicate / 2) + i = Floor(amount / silicate_per_state, 1) + + else + i = Ceiling(amount / silicate_per_state, 1) + + overlays += "silicate sprayer [i]" + +/obj/item/device/silicate_sprayer/on_reagent_change() + update_icon() + +/obj/item/device/silicate_sprayer/preattack(var/atom/A, var/mob/user) + if(get_dist(A, user) > 1) // I purposely don't use proximity_flag so you can get to windows without needing adjacency. (window behind another window for example.) + return + + if(!iswindow(A)) // We can only fix windows. + return + + var/obj/structure/window/W = A + + var/diff = initial(W.health) - W.health + if(!diff) // Not damaged. + user << "\The [W] is already in perfect condition!" + return 1 + + diff = min(diff, get_amount() / SILICATE_PER_DAMAGE) + + W.health += diff + W.healthcheck(user, FALSE) + + user.visible_message("[user] repairs \the [W] with their [name]!", "You repair \the [W] with your [name].") + playsound(get_turf(src), 'sound/effects/refill.ogg', 10, 1, -6) + + remove_silicate(diff * SILICATE_PER_DAMAGE) + + return 1 + + +// Advanced subtype that can reinforce windows! +/obj/item/device/silicate_sprayer/advanced + name = "\improper Advanced Silicate Sprayer" + desc = "An advanced tool used to repair and reinforce windows." + + icon_state = "silicate sprayer advanced" + + max_silicate = 100 + silicate_per_state = 10 + + origin_tech = "materials=3;engineering=4" + + var/mode = MODE_REPAIR + +/obj/item/device/silicate_sprayer/advanced/empty + start_filled = FALSE + +/obj/item/device/silicate_sprayer/advanced/attack_self(var/mob/user) + mode = !mode + user << "\The [src] is now set to [mode == MODE_REINFORCE ? "reinforce" : "repair"] windows." + update_icon() + return 1 + +/obj/item/device/silicate_sprayer/advanced/update_icon() + . = ..() + if(mode == MODE_REINFORCE) + overlays += "silicate sprayer reinforce" + +/obj/item/device/silicate_sprayer/advanced/examine(var/mob/user) + . = ..() + user << "It is set to [mode == MODE_REINFORCE ? "reinforce" : "repair"] windows." + +/obj/item/device/silicate_sprayer/advanced/preattack(var/atom/A, var/mob/user) + if(get_dist(A, user) > 1) // I purposely don't use proximity_flag so you can get to windows without needing adjacency. (window behind another window for example.) + return + + if(!iswindow(A)) + return + + var/obj/structure/window/W = A + var/initial_health = initial(W.health) + + if(mode == MODE_REPAIR || W.health < initial_health) // Call the parent to repair, always repair if it's damaged. + return ..() + + var/extra_health = W.health - initial_health + + if(W.health >= initial_health * MAX_WINDOW_HEALTH_MULTIPLIER) + user << "You can't reinforce \the [W] any further!" + return 1 + + var/repair_amt = min(get_amount() / SILICATE_PER_REINFORCE, (initial_health * MAX_WINDOW_HEALTH_MULTIPLIER) - (initial_health + extra_health)) + + W.health += repair_amt + W.healthcheck(user, FALSE) + + user.visible_message("[user] reinforced \the [W] with their [name]!", "You reinforce \the [W] with your [name].") + playsound(get_turf(src), 'sound/effects/refill.ogg', 10, 1, -6) + + remove_silicate(repair_amt * SILICATE_PER_REINFORCE) + + return 1 + + +#undef MODE_REPAIR +#undef MODE_REINFORCE diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 5d7a212062f..7eb02fb7089 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -45,7 +45,8 @@ "/obj/item/weapon/rcd_ammo", "/obj/item/weapon/reagent_containers/glass/fuelcan", "/obj/item/device/lightreplacer", - "/obj/item/device/device_analyser" + "/obj/item/device/device_analyser", + "/obj/item/device/silicate_sprayer" ) /obj/item/weapon/storage/belt/utility/complete/New() @@ -109,7 +110,8 @@ "/obj/item/blueprints", "/obj/item/device/lightreplacer", "/obj/item/device/device_analyser", - "/obj/item/weapon/rcl" + "/obj/item/weapon/rcl", + "/obj/item/device/silicate_sprayer" ) /obj/item/weapon/storage/belt/utility/chief/New() diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index b4bd3248f7a..dc444d44cf2 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -89,13 +89,12 @@ damage_overlay.icon = icon('icons/obj/structures.dmi') damage_overlay.dir = src.dir + overlays.Cut() + if(health < initial(health)) var/damage_fraction = Clamp(round((initial(health) - health) / initial(health) * 5) + 1, 1, 5) //gives a number, 1-5, based on damagedness damage_overlay.icon_state = "[cracked_base][damage_fraction]" overlays += damage_overlay - else - damage_overlay.icon_state = "" - overlays += damage_overlay /obj/structure/window/bullet_act(var/obj/item/projectile/Proj) diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index 0efd123ae09..01d53f4fcbb 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -205,6 +205,7 @@ src.modules += new /obj/item/taperoll/engineering(src) src.modules += new /obj/item/device/rcd/tile_painter(src) src.modules += new /obj/item/device/material_synth/robot(src) + src.modules += new /obj/item/device/silicate_sprayer(src) sensor_augs = list("Mesons", "Disable") var/obj/item/stack/cable_coil/W = new /obj/item/stack/cable_coil(src) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 7eebdbab512..a0e6e45dbce 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -787,41 +787,12 @@ holder.remove_reagent(src.id, 0.25 * REAGENTS_METABOLISM) return -/* silicate - name = "Silicate" - id = "silicate" - description = "A compound that can be used to reinforce glass." - reagent_state = LIQUID - color = "#C7FFFF" // rgb: 199, 255, 255 - - reaction_obj(var/obj/O, var/volume) - src = null - if(istype(O,/obj/structure/window)) - if(O:silicate <= 200) - - O:silicate += volume - O:health += volume * 3 - - if(!O:silicateIcon) - var/icon/I = icon(O.icon,O.icon_state,O.dir) - - var/r = (volume / 100) + 1 - var/g = (volume / 70) + 1 - var/b = (volume / 50) + 1 - I.SetIntensity(r,g,b) - O.icon = I - O:silicateIcon = I - else - var/icon/I = O:silicateIcon - - var/r = (volume / 100) + 1 - var/g = (volume / 70) + 1 - var/b = (volume / 50) + 1 - I.SetIntensity(r,g,b) - O.icon = I - O:silicateIcon = I - - return*/ +/datum/reagent/silicate + name = "Silicate" + id = "silicate" + description = "A compound that can be used to repair and reinforce glass." + reagent_state = LIQUID + color = "#C7FFFF" // rgb: 199, 255, 255 /datum/reagent/oxygen name = "Oxygen" diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 0f4786e3c8e..a514caef672 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -99,15 +99,13 @@ datum empulse(location, round(created_volume / 24), round(created_volume / 14), 1) holder.clear_reagents() return -/* + silicate name = "Silicate" id = "silicate" result = "silicate" required_reagents = list("aluminum" = 1, "silicon" = 1, "oxygen" = 1) result_amount = 3 -*/ - phalanximine name = "Phalanximine" diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm index a9b1a1e1228..d6caa8622fc 100644 --- a/code/modules/reagents/reagent_dispenser.dm +++ b/code/modules/reagents/reagent_dispenser.dm @@ -277,7 +277,7 @@ /obj/structure/reagent_dispensers/beerkeg/blob_act() explosion(src.loc,0,3,5,7,10) - del(src) + qdel(src) /obj/structure/reagent_dispensers/virusfood name = "Virus Food Dispenser" @@ -301,3 +301,31 @@ /obj/structure/reagent_dispensers/corn_oil_tank/New() . = ..() reagents.add_reagent("cornoil", 1000) + +/obj/structure/reagent_dispensers/silicate + name = "\improper Silicate Tank" + desc = "A tank filled with silicate." + icon = 'icons/obj/objects.dmi' + icon_state = "silicate tank" + amount_per_transfer_from_this = 50 + +/obj/structure/reagent_dispensers/silicate/New() + . = ..() + reagents.add_reagent("silicate", 1000) + +/obj/structure/reagent_dispensers/silicate/attackby(var/obj/item/W, var/mob/user) + . = ..() + if(.) + return + + if(issilicatesprayer(W)) + var/obj/item/device/silicate_sprayer/S = W + if(S.get_amount() >= S.max_silicate) // Already filled. + user << "\The [S] is already full!" + return + + reagents.trans_to(S, S.max_silicate) + S.update_icon() + user << "Sprayer refilled." + playsound(get_turf(src), 'sound/effects/refill.ogg', 50, 1, -6) + return 1 diff --git a/code/modules/research/designs/engineering.dm b/code/modules/research/designs/engineering.dm index d58d4f5c1d3..01ead0e1e86 100644 --- a/code/modules/research/designs/engineering.dm +++ b/code/modules/research/designs/engineering.dm @@ -112,3 +112,13 @@ materials = list (MAT_IRON = 3000, MAT_GLASS = 1500, MAT_DIAMOND = 1000, MAT_URANIUM = 3000) category = "Engineering" build_path = /obj/item/device/material_synth + +/datum/design/adv_silicate_sprayer + name = "Advanced Silicate Sprayer" + desc = "An advanced tool to repair and reinforce windows." + id = "adv_silicate_sprayer" + req_tech = list("engineering" = 3, "materials" = 2) + build_type = PROTOLATHE + materials = list(MAT_IRON = 700, MAT_GLASS = 50, MAT_SILVER = 50) + build_path = /obj/item/device/silicate_sprayer/advanced/empty + category = "Engineering" \ No newline at end of file diff --git a/html/changelogs/PJB3005-silicate.yml b/html/changelogs/PJB3005-silicate.yml new file mode 100644 index 00000000000..6cc7290cfd2 --- /dev/null +++ b/html/changelogs/PJB3005-silicate.yml @@ -0,0 +1,6 @@ +author: PJB3005 +delete-after: true +changes: + - rscadd: "Added the silicate sprayer, a tool for engineers to repair damaged windows, it requires silicate, however there are now silicate tanks around the station for this purpose." + - rscadd: "You can find a silicate sprayer in the nearest YouTool and autolathe." + - rscadd: "There is also an advanced version that has the ability to reinforce windows, ask R&D (nicely)!" diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 145a0d42c64..556838a29af 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index d3237e33ec3..8e90e0fb4e3 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/maps/defficiency.dmm b/maps/defficiency.dmm index fad4b8a4188..0c23aa3ecf3 100644 --- a/maps/defficiency.dmm +++ b/maps/defficiency.dmm @@ -1,11835 +1,11841 @@ -"aaa" = (/turf/space,/area) -"aab" = (/obj/structure/lattice,/turf/space,/area) -"aac" = (/turf/simulated/wall/r_wall,/area/science/test_area) -"aad" = (/turf/simulated/floor/grass,/area/science/test_area) -"aae" = (/obj/structure/window/full/reinforced,/turf/simulated/floor/airless,/area/science/test_area) -"aaf" = (/mob/living/simple_animal/crab,/turf/simulated/floor/grass,/area/science/test_area) -"aag" = (/obj/machinery/camera{c_tag = "Toxins Test Chamber North"; network = list("Toxins")},/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/science/test_area) -"aah" = (/mob/living/simple_animal/cow,/turf/simulated/floor/grass,/area/science/test_area) -"aai" = (/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/science/test_area) -"aaj" = (/obj/machinery/door/window{dir = 2; base_state = "right"; name = "Zoo Entrance"},/turf/simulated/floor/grass,/area/science/test_area) -"aak" = (/turf/simulated/floor/airless,/area/science/test_area) -"aal" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/simulated/wall/r_wall,/area/science/test_area) -"aam" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/airless,/area/science/test_area) -"aan" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/airless,/area/science/test_area) -"aao" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor/airless,/area/science/test_area) -"aap" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor/airless,/area/science/test_area) -"aaq" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Toxins Test Chamber West"; dir = 4; network = list("Toxins")},/turf/simulated/floor/airless,/area/science/test_area) -"aar" = (/obj/item/beacon,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/airless,/area/science/test_area) -"aas" = (/obj/machinery/camera{c_tag = "Toxins Test Chamber East"; dir = 8; network = list("RD","Toxins")},/obj/machinery/light{dir = 4},/turf/simulated/floor/airless,/area/science/test_area) -"aat" = (/obj/structure/docking_port/destination/syndicate/north,/turf/space,/area) -"aau" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/airless,/area/science/test_area) -"aav" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor/airless,/area/science/test_area) -"aaw" = (/turf/simulated/floor/plating/airless,/area/science/test_area) -"aax" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor/airless,/area/science/test_area) -"aay" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/item/target,/turf/simulated/floor/airless,/area/science/test_area) -"aaz" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/obj/item/target/alien,/turf/simulated/floor/airless,/area/science/test_area) -"aaA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaB" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaC" = (/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/airless,/area/science/test_area) -"aaD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaE" = (/obj/machinery/door/airlock/external{name = "Toxins Test Chamber"; req_access_txt = "0"},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaF" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor/airless,/area/science/test_area) -"aaG" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/item/target/syndicate,/turf/simulated/floor/airless,/area/science/test_area) -"aaH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaI" = (/obj/item/clothing/mask/cigarette,/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaL" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/simulated/wall,/area/science/test_area) -"aaM" = (/turf/simulated/wall,/area/science/test_area) -"aaN" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "toxinsdriver"; name = "toxins launcher bay door"},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaO" = (/obj/machinery/door/airlock/external{name = "Toxins Test Chamber"; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaQ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/science/test_area) -"aaR" = (/turf/simulated/floor/plating/airless,/area) -"aaS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area) -"aaT" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area) -"aaU" = (/obj/structure/grille,/turf/space,/area) -"aaV" = (/turf/space,/area/shuttle/transport1/station) -"aaW" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area) -"aaX" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area) -"aaY" = (/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aaZ" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area) -"aba" = (/obj/machinery/atmospherics/miner/sleeping_agent,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abb" = (/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abc" = (/obj/machinery/atmospherics/miner/toxins,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abd" = (/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abe" = (/obj/machinery/atmospherics/miner/oxygen,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abf" = (/obj/machinery/atmospherics/miner/nitrogen,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abg" = (/obj/structure/docking_port/destination/syndicate/northeast,/turf/space,/area) -"abh" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "waste_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/engineering/atmos) -"abi" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/engineering/atmos) -"abj" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abk" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abl" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/engineering/atmos) -"abm" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"},/turf/simulated/floor/engine{name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/engineering/atmos) -"abn" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/engineering/atmos) -"abo" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/engineering/atmos) -"abp" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/engineering/atmos) -"abq" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/engineering/atmos) -"abr" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; frequency = 1441; icon_state = "in"; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/engineering/atmos) -"abs" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/engineering/atmos) -"abt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/engineering/atmos) -"abu" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "waste_in"; on = 1; pixel_y = 1},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/engineering/atmos) -"abv" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abw" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "n2o_in"; on = 1; pixel_y = 1},/turf/simulated/floor/engine/n20,/area/engineering/atmos) -"abx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/engine{name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/engineering/atmos) -"aby" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "tox_in"; on = 1; pixel_y = 1},/turf/simulated/floor/engine{name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/engineering/atmos) -"abz" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/engineering/atmos) -"abA" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "co2_in"; on = 1; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/engineering/atmos) -"abB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/engineering/atmos) -"abC" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "o2_in"; on = 1},/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/engineering/atmos) -"abD" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/engineering/atmos) -"abE" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; icon_state = "on"; id_tag = "n2_in"; on = 1},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/engineering/atmos) -"abF" = (/turf/simulated/wall,/area/derelictparts/stripclub) -"abG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/meter,/turf/simulated/floor/plating,/area/engineering/atmos) -"abH" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/meter,/turf/simulated/floor/plating,/area/engineering/atmos) -"abI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/meter,/turf/simulated/floor/plating,/area/engineering/atmos) -"abJ" = (/obj/machinery/atmospherics/unary/vent/high_volume,/turf/simulated/floor/plating,/area) -"abK" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area) -"abL" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/plating,/area) -"abM" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abN" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abO" = (/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abP" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abR" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abS" = (/obj/effect/decal/cleanable/cobweb2,/obj/item/weapon/cigbutt,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"abT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/lattice,/turf/space,/area) -"abU" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible,/obj/structure/lattice,/turf/space,/area) -"abV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/space,/area) -"abW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/space,/area) -"abX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/lattice,/turf/space,/area) -"abY" = (/obj/machinery/atmospherics/unary/vent,/turf/simulated/floor/plating,/area) -"abZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area) -"aca" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"acb" = (/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"acc" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"acd" = (/turf/simulated/floor/carpet{icon_state = "carpet-broken"},/area/derelictparts/stripclub) -"ace" = (/turf/simulated/shuttle/wall{icon_state = "swall_s6"},/area/shuttle/escape_pod1/station) -"acf" = (/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_pod1/station) -"acg" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod1/station) -"ach" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aci" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acj" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"ack" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acn" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aco" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plating,/area/engineering/atmos) -"acq" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/simulated/floor/plating,/area/engineering/atmos) -"acr" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area) -"act" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"acu" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"acv" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/stripclub) -"acw" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"acx" = (/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/stripclub) -"acy" = (/turf/simulated/shuttle/wall{icon_state = "swall3"},/area/shuttle/escape_pod1/station) -"acz" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/machinery/light/small{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod1/station) -"acA" = (/turf/simulated/wall,/area/hallway/secondary/entry) -"acB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acC" = (/obj/machinery/atmospherics/pipe/manifold/filtering/visible{dir = 8},/turf/simulated/floor{dir = 9; icon_state = "green"},/area/engineering/atmos) -"acD" = (/obj/machinery/atmospherics/binary/pump{dir = 8; icon_state = "intact_on"; name = "Unfiltered to Mix"; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"acE" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor,/area/engineering/atmos) -"acF" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"acG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/turf/simulated/floor{icon_state = "escape"; dir = 9},/area/engineering/atmos) -"acH" = (/obj/machinery/atmospherics/trinary/filter{dir = 8; filter_type = 4; icon_state = "intact_on"; name = "Gas filter (N2O tank)"; on = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "escape"; dir = 5},/area/engineering/atmos) -"acI" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics North #1"},/turf/simulated/floor,/area/engineering/atmos) -"acJ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "tox_in"; name = "Toxin Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/engineering/atmos) -"acK" = (/obj/machinery/atmospherics/trinary/filter{dir = 8; icon_state = "intact_on"; name = "Gas filter (Toxins tank)"; on = 1},/turf/simulated/floor{icon_state = "purple"; dir = 5},/area/engineering/atmos) -"acL" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/turf/simulated/floor{dir = 9; icon_state = "caution"},/area/engineering/atmos) -"acM" = (/obj/machinery/atmospherics/trinary/filter{dir = 8; filter_type = 3; icon_state = "intact_on"; name = "Gas filter (CO2 tank)"; on = 1},/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/engineering/atmos) -"acN" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics North #2"},/turf/simulated/floor,/area/engineering/atmos) -"acO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 9; icon_state = "blue"},/area/engineering/atmos) -"acP" = (/obj/machinery/atmospherics/trinary/filter{dir = 8; filter_type = 1; icon_state = "intact_on"; name = "Gas filter (O2 tank)"; on = 1},/turf/simulated/floor{dir = 5; icon_state = "blue"},/area/engineering/atmos) -"acQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/turf/simulated/floor{icon_state = "red"; dir = 9},/area/engineering/atmos) -"acR" = (/obj/machinery/atmospherics/trinary/filter{dir = 8; filter_type = 2; icon_state = "intact_on"; name = "Gas filter (N2 tank)"; on = 1},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/engineering/atmos) -"acS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/camera{c_tag = "Atmospherics North East"},/turf/simulated/floor,/area/engineering/atmos) -"acT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"acU" = (/obj/machinery/atmospherics/binary/valve/digital{name = "Mixed Air Outlet Valve"; openDuringInit = 1},/turf/simulated/floor,/area/engineering/atmos) -"acV" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"acW" = (/turf/simulated/wall,/area/maintenance/fpmaint) -"acX" = (/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/fpmaint) -"acY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"acZ" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ada" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/stripclub) -"adb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"adc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"add" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"ade" = (/obj/structure/bed/chair{dir = 4},/obj/item/weapon/cigbutt{pixel_x = 4; pixel_y = 12},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adf" = (/obj/structure/window/reinforced,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"adg" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/item/weapon/cigbutt,/turf/simulated/floor/carpet,/area/derelictparts/stripclub) -"adh" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adi" = (/obj/effect/decal/cleanable/generic,/obj/structure/rack,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adj" = (/obj/structure/bed,/obj/effect/decal/cleanable/pie_smudge{desc = "oh GOD"; icon_state = "smashed_pie"; name = "dried stain"},/obj/item/weapon/cigbutt,/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/stripclub) -"adk" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 29},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod1/station) -"adl" = (/turf/simulated/shuttle/wall{icon_state = "swall_s6"},/area/shuttle/arrival/station) -"adm" = (/turf/simulated/shuttle/wall{icon_state = "swall14"},/area/shuttle/arrival/station) -"adn" = (/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/arrival/station) -"ado" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/arrival/station) -"adp" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"adq" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics North West"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/filtering/visible{dir = 8},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/engineering/atmos) -"adr" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Pure to Mix"},/turf/simulated/floor,/area/engineering/atmos) -"ads" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor,/area/engineering/atmos) -"adt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"adu" = (/obj/machinery/atmospherics/binary/valve/digital{name = "N2O Outlet Valve"},/turf/simulated/floor{dir = 1; icon_state = "escape"},/area/engineering/atmos) -"adv" = (/turf/simulated/floor{dir = 1; icon_state = "escape"},/area/engineering/atmos) -"adw" = (/turf/simulated/floor,/area/engineering/atmos) -"adx" = (/obj/machinery/atmospherics/binary/valve/digital{name = "Plasma Outlet Valve"},/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/engineering/atmos) -"ady" = (/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/engineering/atmos) -"adz" = (/obj/machinery/atmospherics/binary/valve/digital{name = "CO2 Outlet Valve"; dir = 1},/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"adA" = (/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"adB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"adC" = (/obj/machinery/atmospherics/binary/valve/digital{name = "Oxygen Outlet Valve"; openDuringInit = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/engineering/atmos) -"adD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "blue"},/area/engineering/atmos) -"adE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"adF" = (/obj/machinery/atmospherics/binary/valve/digital{name = "Nitrogen Outlet Valve"; openDuringInit = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/engineering/atmos) -"adG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/engineering/atmos) -"adH" = (/obj/machinery/atmospherics/trinary/tvalve/digital/mirrored{tag = "icon-tvalvem1 (WEST)"; icon_state = "tvalvem1"; dir = 8; state = 1},/turf/simulated/floor,/area/engineering/atmos) -"adI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor{dir = 4; icon_state = "arrival"},/area/engineering/atmos) -"adJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; pressure_setting = 2000; sensors = list("air_sensor" = "Tank")},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics North East"; dir = 8},/turf/simulated/floor{icon_state = "arrival"; dir = 5},/area/engineering/atmos) -"adK" = (/obj/machinery/atmospherics/pipe/simple/cyan/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) -"adL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/lattice,/turf/space,/area) -"adM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/machinery/meter{frequency = 1443; id_tag = "mair_out_meter"; name = "Mixed Air Tank Out"},/turf/simulated/floor/plating,/area/engineering/atmos) -"adN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engineering/atmos) -"adO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; external_pressure_bound = 0; frequency = 1443; icon_state = "in"; id_tag = "air_out"; internal_pressure_bound = 2000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engineering/atmos) -"adP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"adQ" = (/obj/structure/rack,/obj/item/weapon/lighter/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"adR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"adS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"adT" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/stripclub) -"adU" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adV" = (/obj/structure/bed/chair{dir = 1},/obj/item/weapon/cigbutt{pixel_y = -6},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adW" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/derelictparts/stripclub) -"adX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adY" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"adZ" = (/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aea" = (/obj/machinery/door/airlock{name = "Room 2"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeb" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/wall{icon_state = "swall_f5"},/area/shuttle/escape_pod1/station) -"aec" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod1/station) -"aed" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/wall{icon_state = "swall_f9"},/area/shuttle/escape_pod1/station) -"aee" = (/turf/simulated/shuttle/wall{icon_state = "swall7"},/area/shuttle/arrival/station) -"aef" = (/turf/simulated/shuttle/floor,/turf/simulated/shuttle/wall{icon_state = "swall_f9"},/area/shuttle/arrival/station) -"aeg" = (/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aeh" = (/turf/simulated/shuttle/floor,/turf/simulated/shuttle/wall{icon_state = "swall_f5"},/area/shuttle/arrival/station) -"aei" = (/turf/simulated/shuttle/wall{icon_state = "swall11"},/area/shuttle/arrival/station) -"aej" = (/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/hallway/secondary/entry) -"aek" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/obj/structure/docking_port/destination/transport/station,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ael" = (/obj/machinery/atmospherics/pipe/simple/filtering/visible{dir = 5},/turf/simulated/floor{dir = 10; icon_state = "green"},/area/engineering/atmos) -"aem" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Air to Mix"},/turf/simulated/floor,/area/engineering/atmos) -"aen" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aeo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/simulated/floor,/area/engineering/atmos) -"aep" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/simulated/floor,/area/engineering/atmos) -"aeq" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aer" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"aes" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "N2 to Pure"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"aet" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aeu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aev" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/simulated/floor,/area/engineering/atmos) -"aew" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aex" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "arrival"},/area/engineering/atmos) -"aey" = (/obj/machinery/atmospherics/trinary/mixer{dir = 4; icon_state = "intact_on"; name = "Gas mixer (N2/O2)"; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/simulated/floor{icon_state = "arrival"; dir = 6},/area/engineering/atmos) -"aez" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/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) -"aeA" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1443; icon_state = "on"; id_tag = "air_in"; on = 1},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engineering/atmos) -"aeB" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engineering/atmos) -"aeC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/rack,/obj/item/weapon/tank/air,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeF" = (/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/maintenance/fpmaint) -"aeG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeH" = (/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},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeI" = (/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/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aeJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Strip Club"; req_access_txt = "0"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/stripclub) -"aeK" = (/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/derelictparts/stripclub) -"aeL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/stripclub) -"aeM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeN" = (/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/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/cigbutt,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeR" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aeS" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1"; dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aeT" = (/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aeU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aeV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"},/turf/simulated/wall/r_wall,/area/hallway/secondary/entry) -"aeW" = (/turf/simulated/shuttle/wall{icon_state = "swall3"},/area/shuttle/arrival/station) -"aeX" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aeY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aeZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"afa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"afb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor,/area/engineering/atmos) -"afc" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor,/area/engineering/atmos) -"afd" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"afe" = (/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 (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aff" = (/obj/item/weapon/match,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"afg" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"afh" = (/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/fpmaint) -"afi" = (/turf/simulated/wall/r_wall,/area/medical/virology) -"afj" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/medical/virology) -"afk" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/obj/machinery/camera{c_tag = "Derelict Strip Club"; dir = 4; network = list("SS13")},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"afl" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/stripclub) -"afm" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/stripclub) -"afn" = (/obj/item/weapon/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"afo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"afp" = (/turf/simulated/floor/plating,/area/derelictparts/stripclub) -"afq" = (/obj/machinery/door/airlock{name = "Room 1"; req_access_txt = "0"},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"afr" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"afs" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"aft" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/hallway/secondary/entry) -"afu" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"afv" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/entry) -"afw" = (/turf/simulated/shuttle/wall{icon_state = "swall13"},/area/shuttle/arrival/station) -"afx" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/arrival/station) -"afy" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"afz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"afA" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"afB" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f6"},/area/shuttle/escape_pod2/station) -"afC" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/escape_pod2/station) -"afD" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod2/station) -"afE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"afF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor,/area/engineering/atmos) -"afG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engineering/atmos) -"afH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"afI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"afJ" = (/obj/structure/closet/secure_closet/medical1,/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/virology) -"afK" = (/obj/structure/closet/l3closet/virology,/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/virology) -"afL" = (/obj/structure/table,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"afM" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"afN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = -6; pixel_y = 5},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"afO" = (/obj/structure/table,/obj/item/weapon/storage/fancy/matchbox{pixel_x = -5; pixel_y = 12},/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/stripclub) -"afP" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"afQ" = (/obj/structure/closet,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/stripclub) -"afR" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/stripclub) -"afS" = (/obj/structure/rack,/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/stripclub) -"afT" = (/obj/structure/bed,/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"afU" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "arrival"; dir = 8},/area/hallway/secondary/entry) -"afV" = (/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 (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"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/structure/table,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"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 = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"agQ" = (/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agR" = (/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) -"agS" = (/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) -"agT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agU" = (/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) -"agV" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/stripclub) -"agW" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"agX" = (/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) -"agY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/stripclub) -"agZ" = (/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aha" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor{icon_state = "dark-markings"},/area/gateway) -"ahb" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahc" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/gateway) -"ahd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahe" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahf" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahh" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahi" = (/turf/simulated/floor/plating,/area/engineering/atmos) -"ahj" = (/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) -"ahk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahl" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahm" = (/obj/machinery/disease2/incubator,/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"ahn" = (/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) -"aho" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahp" = (/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) -"ahq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/medical/virology) -"ahr" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"ahs" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"aht" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/derelictparts/stripclub) -"ahu" = (/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) -"ahv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ahw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"ahx" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahy" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"ahz" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahA" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahC" = (/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) -"ahD" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahE" = (/obj/structure/closet/wardrobe/green,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahF" = (/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) -"ahG" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahH" = (/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) -"ahI" = (/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) -"ahJ" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/escape_pod3/station) -"ahK" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod3/station) -"ahL" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/engineering/atmos) -"ahM" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/engineering/atmos) -"ahN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"ahO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahP" = (/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) -"ahQ" = (/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) -"ahR" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/virology) -"ahS" = (/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) -"ahT" = (/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) -"ahU" = (/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) -"ahV" = (/obj/machinery/centrifuge,/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"ahW" = (/obj/machinery/computer/diseasesplicer,/obj/machinery/light{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"ahX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"ahY" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/gateway) -"ahZ" = (/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) -"aia" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor{icon_state = "dark-markings"},/area/gateway) -"aib" = (/obj/machinery/camera{c_tag = "Arrivals West"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aic" = (/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) -"aid" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aie" = (/obj/structure/closet/wardrobe/black,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aif" = (/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) -"aig" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station) -"aih" = (/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) -"aii" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = -32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station) -"aij" = (/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) -"aik" = (/turf/simulated/wall,/area/maintenance/fpmaint3) -"ail" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint3) -"aim" = (/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area) -"ain" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aio" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiq" = (/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) -"air" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ais" = (/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) -"ait" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"aiu" = (/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) -"aiv" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiw" = (/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) -"aix" = (/obj/structure/window/reinforced,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiy" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiz" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aiA" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/hallway/secondary/entry) -"aiB" = (/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) -"aiC" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aiD" = (/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) -"aiE" = (/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) -"aiF" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/escape_pod3/station) -"aiG" = (/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aiH" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/turf/simulated/floor/plating,/area/engineering/atmos) -"aiI" = (/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) -"aiJ" = (/obj/machinery/pipedispenser/disposal,/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"aiK" = (/obj/structure/closet/crate,/turf/simulated/floor,/area/engineering/atmos) -"aiL" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aiM" = (/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) -"aiN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"aiO" = (/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) -"aiP" = (/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) -"aiQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"aiR" = (/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) -"aiS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiT" = (/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) -"aiU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiX" = (/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) -"aiY" = (/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) -"aiZ" = (/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) -"aja" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajb" = (/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) -"ajc" = (/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) -"ajd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aje" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -1; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajf" = (/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) -"ajg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ajh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/gateway) -"aji" = (/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) -"ajj" = (/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) -"ajk" = (/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) -"ajl" = (/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) -"ajm" = (/turf/simulated/wall,/area/gateway) -"ajn" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajo" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajp" = (/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) -"ajq" = (/obj/machinery/requests_console{department = "Arrival shuttle"; pixel_x = -30},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ajr" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ajs" = (/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) -"ajt" = (/turf/simulated/wall,/area/janitor2) -"aju" = (/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"ajv" = (/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) -"ajw" = (/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) -"ajx" = (/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) -"ajy" = (/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) -"ajz" = (/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) -"ajA" = (/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) -"ajB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor,/area/engineering/atmos) -"ajC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ajD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"ajE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ajF" = (/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos) -"ajG" = (/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) -"ajH" = (/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) -"ajI" = (/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) -"ajJ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajK" = (/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) -"ajL" = (/obj/machinery/camera{c_tag = "Atmospherics SE"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ajM" = (/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) -"ajN" = (/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) -"ajO" = (/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) -"ajP" = (/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) -"ajQ" = (/obj/machinery/door/airlock/glass_medical{name = "Monkey Pen"; req_access_txt = "39"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajR" = (/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) -"ajS" = (/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) -"ajT" = (/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) -"ajU" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajV" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajW" = (/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) -"ajX" = (/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) -"ajY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/simulated/floor,/area/gateway) -"ajZ" = (/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) -"aka" = (/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) -"akb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/gateway) -"akc" = (/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/gateway) -"akd" = (/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) -"ake" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"akf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"akg" = (/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) -"akh" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"aki" = (/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) -"akj" = (/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) -"akk" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"akl" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"akm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/simulated/floor{dir = 9; icon_state = "caution"},/area/engineering/atmos) -"akn" = (/obj/machinery/atmospherics/binary/valve/digital{dir = 4; name = "Gas Mix Outlet Valve"},/turf/simulated/floor{dir = 9; icon_state = "green"},/area/engineering/atmos) -"ako" = (/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) -"akp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"akq" = (/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) -"akr" = (/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) -"aks" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"akt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aku" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"akv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor,/area/engineering/atmos) -"akw" = (/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) -"akx" = (/turf/simulated/wall/r_wall,/area/tcomms/storage) -"aky" = (/turf/simulated/wall/r_wall,/area/tcomms/chamber) -"akz" = (/obj/structure/grille,/obj/structure/grille,/turf/space,/area) -"akA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akB" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akC" = (/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) -"akD" = (/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) -"akE" = (/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) -"akF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/gateway) -"akH" = (/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) -"akI" = (/turf/simulated/floor,/area/gateway) -"akJ" = (/obj/machinery/light_switch{pixel_x = 22; pixel_y = 6},/turf/simulated/floor,/area/gateway) -"akK" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/gateway) -"akL" = (/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) -"akM" = (/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) -"akN" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor,/area/janitor2) -"akO" = (/turf/simulated/floor,/area/janitor2) -"akP" = (/obj/item/weapon/stool,/turf/simulated/floor,/area/janitor2) -"akQ" = (/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) -"akR" = (/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) -"akS" = (/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) -"akT" = (/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) -"akU" = (/obj/machinery/atmospherics/binary/pump{name = "Mix to Distro"},/turf/simulated/floor,/area/engineering/atmos) -"akV" = (/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) -"akW" = (/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) -"akX" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Air to Port"},/turf/simulated/floor,/area/engineering/atmos) -"akY" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Pure to Port"},/turf/simulated/floor,/area/engineering/atmos) -"akZ" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Mix to Port"},/turf/simulated/floor,/area/engineering/atmos) -"ala" = (/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) -"alb" = (/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) -"alc" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/tcomms/storage) -"ald" = (/obj/machinery/camera{c_tag = "Telecoms Atmospherics North"},/turf/simulated/floor/plating,/area/tcomms/storage) -"ale" = (/turf/simulated/floor/plating,/area/tcomms/storage) -"alf" = (/turf/simulated/wall,/area/tcomms/chamber) -"alg" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"alh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"ali" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"alj" = (/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) -"alk" = (/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) -"all" = (/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) -"alm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aln" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alp" = (/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) -"alq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alr" = (/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) -"als" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alt" = (/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alu" = (/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) -"alv" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor,/area/gateway) -"alw" = (/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) -"alx" = (/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) -"aly" = (/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) -"alz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"alA" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/arrival/station) -"alB" = (/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) -"alC" = (/obj/machinery/requests_console{department = "Janitorial 2"; departmentType = 1; pixel_x = -32},/obj/structure/bed/chair/vehicle/janicart,/turf/simulated/floor,/area/janitor2) -"alD" = (/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/janitor2) -"alE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/janitor2) -"alF" = (/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) -"alG" = (/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) -"alH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"alI" = (/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) -"alJ" = (/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) -"alK" = (/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) -"alL" = (/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) -"alM" = (/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) -"alN" = (/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) -"alO" = (/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) -"alP" = (/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) -"alQ" = (/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) -"alR" = (/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) -"alS" = (/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) -"alT" = (/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) -"alU" = (/obj/machinery/atmospherics/unary/tank/carbon_dioxide{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"alV" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"alW" = (/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) -"alX" = (/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) -"alY" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"alZ" = (/obj/machinery/message_server,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ama" = (/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amb" = (/obj/machinery/power/battery/smes{charge = 5e+006},/obj/structure/cable,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"amc" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amd" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ame" = (/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) -"amf" = (/turf/simulated/wall,/area/maintenance/fore) -"amg" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area) -"amh" = (/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) -"ami" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area) -"amj" = (/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) -"amk" = (/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},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aml" = (/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) -"amm" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amn" = (/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) -"amo" = (/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) -"amp" = (/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) -"amq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/medical/virology) -"amr" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ams" = (/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) -"amt" = (/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) -"amu" = (/obj/structure/closet/wardrobe/virology_white,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/gateway) -"amw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/secondary/entry) -"amx" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/hallway/secondary/entry) -"amy" = (/turf/simulated/shuttle/wall{icon_state = "swall_s5"},/area/shuttle/arrival/station) -"amz" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/space,/area/shuttle/arrival/station) -"amA" = (/obj/structure/shuttle/engine/propulsion{dir = 1},/turf/space,/area/shuttle/arrival/station) -"amB" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/space,/area/shuttle/arrival/station) -"amC" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/arrival/station) -"amD" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/hallway/secondary/entry) -"amE" = (/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) -"amF" = (/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) -"amG" = (/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) -"amH" = (/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) -"amI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor2) -"amJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amK" = (/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) -"amL" = (/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) -"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amN" = (/obj/machinery/atmospherics/trinary/filter{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "caution"},/area/engineering/atmos) -"amO" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/visible,/turf/simulated/floor/plating,/area/engineering/atmos) -"amP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"amQ" = (/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) -"amR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"amS" = (/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) -"amT" = (/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) -"amU" = (/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/hidden,/turf/simulated/floor,/area/engineering/atmos) -"amV" = (/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) -"amW" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"amX" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"amY" = (/obj/machinery/telecomms/processor/preset_two,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amZ" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ana" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anb" = (/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"anc" = (/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"and" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ane" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anf" = (/obj/machinery/telecomms/bus/preset_four,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ang" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/plating,/area/maintenance/fore) -"anh" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"ani" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"anj" = (/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) -"ank" = (/turf/simulated/wall,/area/medical/surgery) -"anl" = (/turf/simulated/wall,/area/medical/virology) -"anm" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ann" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ano" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anq" = (/turf/simulated/wall,/area/storage/emergency) -"anr" = (/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) -"ans" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency) -"ant" = (/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) -"anu" = (/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) -"anv" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor,/area/janitor2) -"anw" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"anx" = (/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) -"any" = (/obj/structure/rack,/obj/item/weapon/wrench,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anz" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anA" = (/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) -"anB" = (/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) -"anC" = (/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) -"anD" = (/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) -"anE" = (/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) -"anF" = (/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) -"anG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"anH" = (/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) -"anI" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/turf/simulated/floor,/area/engineering/atmos) -"anJ" = (/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) -"anK" = (/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) -"anL" = (/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) -"anM" = (/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) -"anN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"anO" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engineering/atmos) -"anP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"anQ" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"anR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"anS" = (/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) -"anT" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue,/turf/simulated/floor/plating,/area/tcomms/storage) -"anU" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"anV" = (/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue{dir = 4},/turf/simulated/wall,/area/tcomms/chamber) -"anW" = (/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) -"anX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"anY" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anZ" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aoa" = (/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) -"aob" = (/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) -"aoc" = (/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) -"aod" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fore) -"aoe" = (/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) -"aof" = (/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"aog" = (/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) -"aoh" = (/obj/machinery/optable,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aoi" = (/obj/machinery/computer/operating,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aoj" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/FixOVein,/turf/simulated/floor,/area/medical/surgery) -"aok" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/surgery) -"aol" = (/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) -"aom" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/surgery) -"aon" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor,/area/medical/surgery) -"aoo" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/simulated/floor{dir = 4; icon_state = "whitegreencorner"},/area/medical/medbay) -"aop" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/medbay) -"aoq" = (/obj/machinery/bioprinter/prosthetics,/turf/simulated/floor{dir = 1; icon_state = "whitegreencorner"},/area/medical/medbay) -"aor" = (/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) -"aos" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aot" = (/obj/structure/sink{dir = 1; pixel_y = 25},/obj/machinery/camera{c_tag = "Medbay Storage"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aou" = (/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) -"aov" = (/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) -"aow" = (/turf/simulated/wall,/area/medical/medbay2) -"aox" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aoy" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aoz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency) -"aoA" = (/obj/item/weapon/extinguisher,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency) -"aoB" = (/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) -"aoC" = (/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) -"aoD" = (/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) -"aoE" = (/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) -"aoF" = (/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) -"aoG" = (/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) -"aoH" = (/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) -"aoI" = (/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) -"aoJ" = (/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) -"aoK" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"aoL" = (/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) -"aoM" = (/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) -"aoN" = (/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) -"aoO" = (/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) -"aoP" = (/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) -"aoQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aoR" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{dir = 10; icon_state = "caution"},/area/engineering/atmos) -"aoS" = (/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) -"aoT" = (/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) -"aoU" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; name = "Waste In"; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aoV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"aoW" = (/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) -"aoX" = (/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) -"aoY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aoZ" = (/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) -"apa" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/tcomms/storage) -"apb" = (/obj/machinery/telecomms/bus/preset_one,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apc" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apd" = (/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ape" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"apf" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"apg" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aph" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"api" = (/obj/machinery/telecomms/processor/preset_three,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apj" = (/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) -"apk" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/antimatter_room) -"apl" = (/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) -"apm" = (/turf/simulated/wall/r_wall,/area/engineering/antimatter_room) -"apn" = (/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) -"apo" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/igniter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/maintenance/fore) -"app" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 8},/obj/item/weapon/cell/high,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apq" = (/obj/structure/closet/firecloset,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apr" = (/obj/structure/closet/emcloset,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"aps" = (/obj/machinery/camera{c_tag = "Science Maint. Top"; network = list("Toxins")},/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apt" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apu" = (/obj/item/weapon/stock_parts/manipulator{pixel_x = -6; pixel_y = -4},/turf/simulated/floor/plating,/area/maintenance/fore) -"apv" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating,/area/maintenance/fore) -"apw" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/space,/area/science/mixing) -"apx" = (/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) -"apy" = (/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) -"apz" = (/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) -"apA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/science/mixing) -"apB" = (/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/mixing) -"apC" = (/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) -"apD" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/item/weapon/FixOVein,/obj/item/weapon/surgicaldrill,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apE" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apF" = (/obj/machinery/atmospherics/unary/vent_pump,/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apG" = (/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) -"apH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"apI" = (/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) -"apJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"apK" = (/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) -"apL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"apM" = (/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) -"apN" = (/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) -"apO" = (/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) -"apP" = (/obj/structure/closet/l3closet/general,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apQ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apR" = (/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apS" = (/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) -"apT" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apU" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apV" = (/obj/machinery/space_heater,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor/plating,/area/storage/emergency) -"apW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/storage/emergency) -"apX" = (/obj/machinery/door/airlock{name = "Fore Starboard Emergency Storage"; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/emergency) -"apY" = (/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) -"apZ" = (/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) -"aqa" = (/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) -"aqb" = (/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) -"aqc" = (/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) -"aqd" = (/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) -"aqe" = (/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) -"aqf" = (/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) -"aqg" = (/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) -"aqh" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqj" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/mounted/poster,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aql" = (/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) -"aqm" = (/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) -"aqn" = (/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) -"aqo" = (/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) -"aqp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aqq" = (/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) -"aqr" = (/obj/machinery/atmospherics/unary/tank/nitrogen{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqs" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqt" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; name = "Gas pump"; on = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqu" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/wall,/area/tcomms/chamber) -"aqv" = (/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) -"aqw" = (/obj/machinery/telecomms/server/presets/medical,/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqx" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqy" = (/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) -"aqz" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aqA" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqB" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqC" = (/obj/machinery/telecomms/server/presets/security,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqD" = (/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) -"aqE" = (/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"aqF" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"aqG" = (/turf/simulated/wall,/area/derelictparts/fore) -"aqH" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/maintenance/fore) -"aqI" = (/turf/simulated/floor{icon_state = "floorscorched1"},/area/maintenance/fore) -"aqJ" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"aqK" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"aqL" = (/turf/simulated/floor/plating,/area/maintenance/fore) -"aqM" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"aqN" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fore) -"aqO" = (/turf/simulated/wall,/area/science/mixing) -"aqP" = (/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) -"aqQ" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"aqR" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/science/mixing) -"aqS" = (/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) -"aqT" = (/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) -"aqU" = (/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) -"aqV" = (/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) -"aqW" = (/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) -"aqX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"aqY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"aqZ" = (/obj/machinery/optable,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"arb" = (/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) -"arc" = (/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},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"ard" = (/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) -"are" = (/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) -"arf" = (/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) -"arg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay2) -"arh" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"ari" = (/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) -"arj" = (/obj/structure/rack,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ark" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/storage/emergency) -"arl" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plating,/area/storage/emergency) -"arm" = (/turf/simulated/floor{icon_state = "arrival"},/area/hallway/secondary/entry) -"arn" = (/obj/machinery/camera{c_tag = "Arrivals South West"; dir = 1},/turf/simulated/floor{icon_state = "arrival"},/area/hallway/secondary/entry) -"aro" = (/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) -"arp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/secondary/entry) -"arq" = (/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) -"arr" = (/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) -"ars" = (/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid3"},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"art" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aru" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arv" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/weapon/cigbutt{pixel_x = -6; pixel_y = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arw" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arx" = (/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) -"ary" = (/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 50},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"arz" = (/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) -"arA" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/simulated/floor,/area/engineering/atmos) -"arB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"arC" = (/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) -"arD" = (/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) -"arE" = (/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) -"arF" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Port to Filter"},/turf/simulated/floor,/area/engineering/atmos) -"arG" = (/obj/machinery/atmospherics/unary/heat_reservoir/heater{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"arH" = (/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) -"arI" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/simulated/floor/plating,/area/tcomms/storage) -"arJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"arK" = (/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) -"arL" = (/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) -"arM" = (/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) -"arN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"arO" = (/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"arP" = (/turf/simulated/floor{icon_state = "dark"},/area/engineering/antimatter_room) -"arQ" = (/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/antimatter_room) -"arR" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area) -"arS" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/item/stack/rods,/turf/space,/area) -"arT" = (/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) -"arU" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/fore) -"arV" = (/obj/item/weapon/shard,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"arW" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fore) -"arX" = (/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fore) -"arY" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/fore) -"arZ" = (/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) -"asa" = (/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) -"asb" = (/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) -"asc" = (/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) -"asd" = (/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) -"ase" = (/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) -"asf" = (/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) -"asg" = (/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) -"ash" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"asi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"asj" = (/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) -"ask" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/surgery) -"asl" = (/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"asm" = (/obj/machinery/computer/operating,/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"asn" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/surgery) -"aso" = (/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) -"asp" = (/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) -"asq" = (/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) -"asr" = (/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) -"ass" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"ast" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"asu" = (/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) -"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"asw" = (/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) -"asx" = (/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) -"asy" = (/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) -"asz" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/secondary/entry) -"asA" = (/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) -"asB" = (/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) -"asC" = (/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) -"asD" = (/turf/simulated/wall,/area/security/checkpoint2) -"asE" = (/turf/simulated/wall,/area/storage/primary) -"asF" = (/obj/structure/closet/fireaxecabinet{locked = 1; pixel_x = -32},/turf/simulated/floor,/area/engineering/atmos) -"asG" = (/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) -"asH" = (/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) -"asI" = (/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) -"asJ" = (/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) -"asK" = (/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) -"asL" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Filter"},/turf/simulated/floor,/area/engineering/atmos) -"asM" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor,/area/engineering/atmos) -"asN" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"asO" = (/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) -"asP" = (/obj/machinery/door/airlock/atmos{name = "Telecomms Atmospherics"; req_access_txt = "24"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcomms/storage) -"asQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/tcomms/storage) -"asR" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"asS" = (/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) -"asT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tcommsat/computer) -"asU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"asV" = (/turf/simulated/floor{icon_state = "dark"},/area/tcommsat/computer) -"asW" = (/obj/structure/grille,/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,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/computer) -"asY" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"asZ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/antimatter_room) -"ata" = (/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/fore) -"atb" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/fore) -"atc" = (/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) -"atd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"ate" = (/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) -"atf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore) -"atg" = (/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) -"ath" = (/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) -"ati" = (/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) -"atj" = (/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) -"atk" = (/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) -"atl" = (/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) -"atm" = (/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) -"atn" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fore) -"ato" = (/obj/machinery/computer/bhangmeter,/turf/simulated/floor,/area/science/mixing) -"atp" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/science/mixing) -"atq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/science/mixing) -"atr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/science/mixing) -"ats" = (/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) -"att" = (/turf/simulated/wall,/area/medical/break_room) -"atu" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/medical/surgery) -"atv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/medical/surgery) -"atw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"atx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor,/area/medical/surgery) -"aty" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/surgery) -"atz" = (/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) -"atA" = (/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) -"atB" = (/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) -"atC" = (/obj/machinery/door/airlock/glass_medical{name = "Medbay Storage"; req_access_txt = "5"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"atD" = (/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) -"atE" = (/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) -"atF" = (/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) -"atG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atH" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atI" = (/obj/structure/closet/crate,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atJ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atK" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atM" = (/turf/simulated/wall,/area/maintenance/fpmaint2) -"atN" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atO" = (/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) -"atP" = (/obj/structure/table/woodentable,/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atQ" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/secondary/entry) -"atS" = (/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) -"atT" = (/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) -"atU" = (/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint2) -"atV" = (/obj/machinery/computer/security,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/checkpoint2) -"atW" = (/obj/machinery/vending/assist,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"atX" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"atY" = (/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) -"atZ" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor,/area/storage/primary) -"aua" = (/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) -"aub" = (/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) -"auc" = (/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) -"aud" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor,/area/storage/primary) -"aue" = (/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) -"auf" = (/obj/machinery/vending/tool,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aug" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor,/area/engineering/atmos) -"auh" = (/obj/machinery/atmospherics/binary/pump{dir = 1; icon_state = "intact_on"; name = "External to Filter"; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aui" = (/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) -"auj" = (/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) -"auk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aul" = (/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) -"aum" = (/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) -"aun" = (/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) -"auo" = (/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) -"aup" = (/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) -"auq" = (/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) -"aur" = (/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) -"aus" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/tcomms/storage) -"aut" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/tcommsat/computer) -"auu" = (/obj/machinery/computer/telecomms/traffic{network = "tcommsat"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/tcommsat/computer) -"auv" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/tcommsat/computer) -"auw" = (/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) -"aux" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/turf/simulated/floor{icon_state = "dark"},/area/tcommsat/computer) -"auy" = (/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) -"auz" = (/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) -"auA" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/tcommsat/computer) -"auB" = (/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) -"auC" = (/obj/item/stack/rods,/turf/space,/area) -"auD" = (/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) -"auE" = (/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) -"auF" = (/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) -"auG" = (/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) -"auH" = (/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) -"auI" = (/obj/structure/closet,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"auJ" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/bruise_pack,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/fore) -"auK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"auL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fore) -"auM" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"auN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"auO" = (/obj/item/stack/sheet/glass/glass{amount = 28},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fore) -"auP" = (/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) -"auQ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"auR" = (/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) -"auS" = (/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) -"auT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/science/mixing) -"auU" = (/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) -"auV" = (/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) -"auW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"auX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"auY" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"auZ" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"ava" = (/obj/structure/window/full/reinforced,/turf/simulated/floor/plating,/area/medical/surgery) -"avb" = (/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) -"avc" = (/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) -"avd" = (/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) -"ave" = (/turf/simulated/wall/r_wall,/area/medical/cmo) -"avf" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avh" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint2) -"avl" = (/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) -"avm" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"avn" = (/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) -"avo" = (/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) -"avp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"avq" = (/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) -"avr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/secondary/entry) -"avs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/security/checkpoint2) -"avt" = (/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) -"avu" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/security/checkpoint2) -"avv" = (/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) -"avw" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"avx" = (/obj/item/weapon/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"avy" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"avz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"avA" = (/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) -"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/engineering/atmos) -"avC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/wall,/area/engineering/atmos) -"avD" = (/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) -"avE" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/atmos) -"avF" = (/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) -"avG" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engineering/atmos) -"avH" = (/obj/machinery/atmospherics/trinary/mixer{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"avI" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"avJ" = (/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/plating,/area/tcomms/storage) -"avK" = (/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) -"avL" = (/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) -"avM" = (/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) -"avN" = (/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) -"avO" = (/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) -"avP" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avR" = (/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) -"avS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avT" = (/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) -"avU" = (/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) -"avV" = (/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) -"avW" = (/turf/simulated/floor/plating/airless{oxygen = 5000; toxins = 5000},/area) -"avX" = (/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) -"avY" = (/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) -"avZ" = (/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) -"awa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/barricade/full,/obj/effect/decal/cleanable/blood/writing,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"awb" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fore) -"awc" = (/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fore) -"awd" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/maintenance/fore) -"awe" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) -"awf" = (/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) -"awg" = (/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) -"awh" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"awi" = (/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) -"awj" = (/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) -"awk" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"awl" = (/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) -"awm" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awn" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awo" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"awq" = (/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) -"awr" = (/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) -"aws" = (/obj/machinery/suit_storage_unit/medical,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awt" = (/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) -"awu" = (/obj/machinery/computer/med_data,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awv" = (/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) -"aww" = (/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) -"awx" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awy" = (/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) -"awz" = (/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) -"awA" = (/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) -"awB" = (/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) -"awC" = (/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) -"awD" = (/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) -"awE" = (/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) -"awF" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"awG" = (/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) -"awH" = (/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) -"awI" = (/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) -"awJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"awK" = (/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) -"awL" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"awM" = (/turf/simulated/floor,/area/security/checkpoint2) -"awN" = (/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) -"awO" = (/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) -"awP" = (/obj/item/stack/rods{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awQ" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awR" = (/obj/item/stack/sheet/glass/glass{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awS" = (/obj/item/stack/sheet/metal{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awT" = (/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) -"awU" = (/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) -"awV" = (/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) -"awW" = (/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) -"awX" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/engineering/atmos) -"awY" = (/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) -"awZ" = (/obj/machinery/computer/atmoscontrol,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axa" = (/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) -"axb" = (/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) -"axc" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axd" = (/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) -"axe" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/engineering/atmos) -"axf" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/tcomms/storage) -"axg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera{c_tag = "Telecoms Atmospherics South"; dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"axh" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/plating,/area/tcomms/storage) -"axi" = (/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) -"axj" = (/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) -"axk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/tcommsat/computer) -"axl" = (/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) -"axm" = (/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) -"axn" = (/obj/machinery/camera{c_tag = "Telecoms Monitoring"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/tcommsat/computer) -"axo" = (/obj/structure/closet/emcloset,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor,/area/tcommsat/computer) -"axp" = (/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) -"axq" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/tcommsat/computer) -"axr" = (/obj/machinery/power/am_control_unit{anchored = 0},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"axs" = (/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) -"axt" = (/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) -"axu" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"axv" = (/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) -"axw" = (/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) -"axx" = (/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) -"axy" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"axz" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet,/obj/item/weapon/wirecutters,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fore) -"axA" = (/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) -"axB" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fore) -"axC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/blood/writing,/turf/simulated/floor/plating,/area/maintenance/fore) -"axD" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"axE" = (/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) -"axF" = (/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) -"axG" = (/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) -"axH" = (/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) -"axI" = (/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) -"axJ" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axK" = (/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) -"axL" = (/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) -"axM" = (/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) -"axN" = (/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) -"axO" = (/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) -"axP" = (/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) -"axQ" = (/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) -"axR" = (/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) -"axS" = (/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) -"axT" = (/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) -"axU" = (/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) -"axV" = (/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) -"axW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"axX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"axY" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"axZ" = (/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"aya" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayb" = (/obj/machinery/camera{c_tag = "Surgery Observation"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayc" = (/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) -"ayd" = (/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Surgery Observation"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"aye" = (/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) -"ayf" = (/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) -"ayg" = (/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) -"ayh" = (/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) -"ayi" = (/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"ayj" = (/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) -"ayk" = (/obj/machinery/keycard_auth{pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"ayl" = (/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) -"aym" = (/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) -"ayn" = (/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) -"ayo" = (/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) -"ayp" = (/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) -"ayq" = (/turf/simulated/wall,/area/medical/patients_rooms) -"ayr" = (/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) -"ays" = (/turf/simulated/wall/r_wall,/area/engineering/mechanics) -"ayt" = (/obj/item/weapon/crowbar,/obj/item/device/flash,/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"ayu" = (/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) -"ayv" = (/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) -"ayw" = (/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) -"ayx" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"ayy" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"ayz" = (/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) -"ayA" = (/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) -"ayB" = (/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) -"ayC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"ayD" = (/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) -"ayE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ayF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"ayG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ayH" = (/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor,/area/engineering/atmos) -"ayI" = (/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) -"ayJ" = (/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) -"ayK" = (/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) -"ayL" = (/obj/structure/closet/firecloset,/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/engineering/atmos) -"ayM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcomms/storage) -"ayN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcomms/storage) -"ayO" = (/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"},/turf/simulated/floor,/area/tcommsat/computer) -"ayP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"ayQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"ayR" = (/turf/simulated/wall,/area/engineering/antimatter_room) -"ayS" = (/obj/machinery/door/airlock/engineering{name = "Antimatter Room"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/antimatter_room) -"ayT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/engineering/antimatter_room) -"ayU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engineering/antimatter_room) -"ayV" = (/turf/simulated/wall/r_wall,/area/engineering/engine) -"ayW" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"ayX" = (/turf/simulated/floor/plating,/area/derelictparts/fore) -"ayY" = (/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) -"ayZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aza" = (/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) -"azb" = (/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) -"azc" = (/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) -"azd" = (/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) -"aze" = (/obj/item/weapon/cigbutt,/obj/machinery/camera{c_tag = "Science Maint. Bottom"; dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fore) -"azf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/fore) -"azg" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azi" = (/turf/simulated/wall/r_wall,/area/science/storage) -"azj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"azk" = (/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) -"azl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"azm" = (/turf/simulated/wall/r_wall,/area/medical/break_room) -"azn" = (/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) -"azo" = (/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) -"azp" = (/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) -"azq" = (/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) -"azr" = (/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) -"azs" = (/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) -"azt" = (/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) -"azu" = (/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) -"azv" = (/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) -"azw" = (/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) -"azx" = (/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) -"azy" = (/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) -"azz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/mechanics) -"azA" = (/obj/structure/closet/toolcloset,/turf/simulated/floor,/area/engineering/mechanics) -"azB" = (/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) -"azC" = (/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) -"azD" = (/obj/structure/closet/secure_closet/engineering_mechanic,/turf/simulated/floor,/area/engineering/mechanics) -"azE" = (/obj/structure/rack,/obj/item/weapon/storage/belt,/obj/item/device/device_analyser,/obj/item/device/device_analyser,/turf/simulated/floor,/area/engineering/mechanics) -"azF" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/fore) -"azG" = (/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) -"azH" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"azI" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"azJ" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"azK" = (/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) -"azL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"azM" = (/obj/item/weapon/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"azN" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/storage/primary) -"azO" = (/obj/structure/table,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"azP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"azQ" = (/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) -"azR" = (/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) -"azS" = (/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) -"azT" = (/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) -"azU" = (/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) -"azV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"azW" = (/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) -"azX" = (/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) -"azY" = (/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) -"azZ" = (/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) -"aAa" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/engineering/atmos) -"aAb" = (/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) -"aAc" = (/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) -"aAd" = (/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) -"aAe" = (/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) -"aAf" = (/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) -"aAg" = (/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) -"aAh" = (/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) -"aAi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aAj" = (/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) -"aAk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/engine) -"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAn" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAo" = (/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) -"aAp" = (/obj/machinery/camera{c_tag = "Engineering AME Hallway 2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAr" = (/turf/simulated/floor,/area/engineering/engine) -"aAs" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area) -"aAt" = (/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/solar/fport) -"aAu" = (/turf/simulated/wall/r_wall,/area/solar/fport) -"aAv" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aAw" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aAx" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aAy" = (/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) -"aAz" = (/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aAA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/fore) -"aAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aAC" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aAD" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aAE" = (/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) -"aAF" = (/turf/simulated/wall,/area/science/storage) -"aAG" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aAH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aAI" = (/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) -"aAJ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"aAK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/break_room) -"aAL" = (/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) -"aAM" = (/obj/machinery/vending/coffee,/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aAN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aAO" = (/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) -"aAP" = (/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) -"aAQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint2) -"aAR" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aAS" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aAT" = (/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) -"aAU" = (/obj/machinery/sleep_console,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor,/area/medical/medbay) -"aAV" = (/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) -"aAW" = (/obj/machinery/bodyscanner,/obj/structure/closet/walllocker/defiblocker{pixel_y = 32},/turf/simulated/floor,/area/medical/medbay) -"aAX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aAY" = (/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) -"aAZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aBa" = (/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) -"aBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBc" = (/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) -"aBd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBe" = (/obj/machinery/light_switch{pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBf" = (/turf/simulated/wall,/area/medical/cmo) -"aBg" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aBh" = (/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) -"aBi" = (/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) -"aBj" = (/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) -"aBk" = (/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) -"aBl" = (/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) -"aBm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBn" = (/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) -"aBo" = (/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) -"aBp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBq" = (/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) -"aBr" = (/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},/turf/simulated/floor,/area/security/checkpoint2) -"aBs" = (/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) -"aBt" = (/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) -"aBu" = (/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) -"aBv" = (/obj/structure/table,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor,/area/storage/primary) -"aBw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/storage/primary) -"aBx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBy" = (/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) -"aBz" = (/obj/structure/table,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBA" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/storage/primary) -"aBC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/primary) -"aBD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/fpmaint3) -"aBF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/fpmaint3) -"aBG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aBH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aBI" = (/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) -"aBJ" = (/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) -"aBK" = (/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) -"aBL" = (/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) -"aBM" = (/obj/structure/dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aBN" = (/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) -"aBO" = (/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) -"aBP" = (/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) -"aBQ" = (/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) -"aBR" = (/turf/simulated/floor{dir = 6; icon_state = "caution"},/area/engineering/atmos) -"aBS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aBT" = (/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) -"aBU" = (/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) -"aBV" = (/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) -"aBW" = (/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) -"aBX" = (/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) -"aBY" = (/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) -"aBZ" = (/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) -"aCa" = (/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) -"aCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aCc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCd" = (/obj/structure/lattice,/obj/item/stack/rods,/turf/space,/area) -"aCe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aCf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"aCg" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/solar/fport) -"aCh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/solar/fport) -"aCi" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/solar/fport) -"aCj" = (/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/solar/fport) -"aCk" = (/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/solar/fport) -"aCl" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/battery/smes{charge = 0},/turf/simulated/floor/plating,/area/solar/fport) -"aCm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/solar/fport) -"aCn" = (/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) -"aCo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aCp" = (/obj/machinery/computer/area_atmos,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aCq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aCr" = (/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) -"aCs" = (/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) -"aCt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/break_room) -"aCu" = (/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) -"aCv" = (/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) -"aCw" = (/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) -"aCx" = (/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) -"aCy" = (/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) -"aCz" = (/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) -"aCA" = (/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},/turf/simulated/floor,/area/engineering/mechanics) -"aCB" = (/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{dir = 1; icon_state = "pipe-j2s"; sortType = 2},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"aCC" = (/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) -"aCD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aCE" = (/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{dir = 1; sortType = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCF" = (/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) -"aCG" = (/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},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCH" = (/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) -"aCI" = (/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) -"aCJ" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCK" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCL" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aCM" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aCN" = (/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) -"aCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aCP" = (/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) -"aCQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCR" = (/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) -"aCS" = (/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) -"aCT" = (/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) -"aCU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/engineering/mechanics) -"aCV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/mechanics) -"aCW" = (/turf/simulated/floor,/area/engineering/mechanics) -"aCX" = (/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) -"aCY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aCZ" = (/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) -"aDa" = (/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) -"aDb" = (/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) -"aDc" = (/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/storage/primary) -"aDd" = (/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) -"aDe" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/primary) -"aDf" = (/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) -"aDg" = (/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/primary) -"aDh" = (/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) -"aDi" = (/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) -"aDj" = (/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) -"aDk" = (/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) -"aDl" = (/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) -"aDm" = (/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) -"aDn" = (/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) -"aDo" = (/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) -"aDp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDr" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDs" = (/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,/turf/simulated/floor,/area/engineering/atmos) -"aDt" = (/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) -"aDu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aDv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aDw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aDx" = (/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) -"aDy" = (/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDB" = (/turf/simulated/wall,/area/engineering/supermatter_room) -"aDC" = (/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) -"aDD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aDE" = (/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) -"aDF" = (/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) -"aDG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar/panel/tracker,/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"aDI" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"aDJ" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fport) -"aDK" = (/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) -"aDL" = (/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDM" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDN" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"aDO" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDP" = (/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/solar/fport) -"aDQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/solar/fport) -"aDR" = (/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/solar/fport) -"aDS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/solar/fport) -"aDT" = (/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/solar/fport) -"aDU" = (/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/solar/fport) -"aDV" = (/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) -"aDW" = (/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) -"aDX" = (/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) -"aDY" = (/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) -"aDZ" = (/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) -"aEa" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEb" = (/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) -"aEc" = (/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) -"aEd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEe" = (/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) -"aEf" = (/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) -"aEg" = (/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"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEh" = (/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) -"aEi" = (/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) -"aEj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aEk" = (/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) -"aEl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aEm" = (/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) -"aEn" = (/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"},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aEo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/engineering/mechanics) -"aEp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/mechanics) -"aEq" = (/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) -"aEr" = (/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) -"aEs" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aEt" = (/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) -"aEu" = (/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) -"aEv" = (/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) -"aEw" = (/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) -"aEx" = (/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) -"aEy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEz" = (/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) -"aEA" = (/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) -"aEB" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEC" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aED" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEE" = (/turf/simulated/wall/r_wall,/area/medical/morgue) -"aEF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/morgue) -"aEG" = (/turf/simulated/wall,/area/medical/morgue) -"aEH" = (/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) -"aEI" = (/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) -"aEJ" = (/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) -"aEK" = (/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) -"aEL" = (/turf/simulated/floor,/area/hallway/primary/fore) -"aEM" = (/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) -"aEN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aEO" = (/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) -"aEP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aEQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aER" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aES" = (/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) -"aET" = (/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) -"aEU" = (/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) -"aEV" = (/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) -"aEW" = (/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) -"aEX" = (/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) -"aEY" = (/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) -"aEZ" = (/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) -"aFa" = (/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) -"aFb" = (/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) -"aFc" = (/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) -"aFd" = (/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) -"aFe" = (/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) -"aFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFg" = (/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) -"aFh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/dispenser{pixel_x = -1},/turf/simulated/floor,/area/engineering/break_room) -"aFi" = (/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) -"aFj" = (/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) -"aFk" = (/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) -"aFl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/break_room) -"aFm" = (/turf/simulated/wall,/area/engineering/break_room) -"aFn" = (/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) -"aFo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aFp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aFq" = (/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) -"aFr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine) -"aFs" = (/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) -"aFt" = (/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) -"aFu" = (/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) -"aFv" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"aFw" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aFx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aFy" = (/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) -"aFz" = (/obj/machinery/power/emitter,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aFA" = (/obj/machinery/power/emitter,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFB" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFC" = (/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) -"aFD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aFE" = (/obj/machinery/portable_atmospherics/canister/plasma,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFF" = (/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) -"aFG" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFH" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFI" = (/obj/machinery/atmospherics/unary/portables_connector,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFJ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFK" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aFL" = (/turf/simulated/floor,/area/engineering/supermatter_room) -"aFM" = (/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) -"aFN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area) -"aFO" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area) -"aFP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/solar/fport) -"aFQ" = (/obj/structure/cable,/obj/machinery/power/solar/control{id_tag = "foreportsolar"; name = "Fore Port Solar Control"},/turf/simulated/floor/plating,/area/solar/fport) -"aFR" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/solar/fport) -"aFS" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/solar/fport) -"aFT" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aFU" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/weapon/lighter/random,/turf/simulated/floor/plating,/area/maintenance/fore) -"aFV" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aFW" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aFX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aFY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aFZ" = (/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) -"aGa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/science/storage) -"aGb" = (/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) -"aGc" = (/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) -"aGd" = (/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) -"aGe" = (/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) -"aGf" = (/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) -"aGg" = (/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) -"aGh" = (/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) -"aGi" = (/obj/machinery/mineral/output,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/mechanics) -"aGj" = (/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) -"aGk" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/engineering/supermatter_room) -"aGl" = (/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) -"aGm" = (/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) -"aGn" = (/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) -"aGo" = (/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,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aGp" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sleep_console,/turf/simulated/floor,/area/medical/medbay) -"aGq" = (/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) -"aGr" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGs" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGt" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGu" = (/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) -"aGv" = (/obj/machinery/bodyscanner,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/medical/medbay) -"aGw" = (/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) -"aGx" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/engineering/mechanics) -"aGy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/iv_drip,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aGz" = (/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) -"aGA" = (/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) -"aGB" = (/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) -"aGC" = (/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) -"aGD" = (/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) -"aGE" = (/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) -"aGF" = (/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) -"aGG" = (/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) -"aGH" = (/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) -"aGI" = (/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) -"aGJ" = (/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) -"aGK" = (/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) -"aGL" = (/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) -"aGM" = (/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) -"aGN" = (/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) -"aGO" = (/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) -"aGP" = (/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) -"aGQ" = (/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) -"aGR" = (/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) -"aGS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aGT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aGU" = (/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{dir = 8; sortType = 6},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engineering/break_room) -"aGV" = (/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) -"aGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aGX" = (/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) -"aGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aGZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aHa" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aHb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/engine) -"aHc" = (/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aHd" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aHe" = (/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) -"aHf" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"aHg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/engineering/engine) -"aHh" = (/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) -"aHi" = (/obj/effect/decal/warning_stripes{dir = 2; icon_state = "radiation-w"},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aHj" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aHk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHn" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engineering/supermatter_room) -"aHo" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue,/turf/simulated/floor,/area/engineering/supermatter_room) -"aHp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aHq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area) -"aHr" = (/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) -"aHs" = (/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) -"aHt" = (/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) -"aHu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/solar/fport) -"aHv" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aHw" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aHx" = (/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) -"aHy" = (/turf/simulated/floor/engine,/area/science/xenobiology) -"aHz" = (/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) -"aHA" = (/turf/simulated/wall/r_wall,/area/science/telescience) -"aHB" = (/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) -"aHC" = (/obj/machinery/portable_atmospherics/canister/plasma,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHD" = (/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) -"aHE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHF" = (/turf/simulated/wall/r_wall,/area/science/mixing) -"aHG" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/science/mixing) -"aHH" = (/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) -"aHI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/mixing) -"aHJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/break_room) -"aHK" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering"; location = "ArrivalsL"},/turf/simulated/floor,/area/hallway/primary/fore) -"aHL" = (/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) -"aHM" = (/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) -"aHN" = (/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) -"aHO" = (/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) -"aHP" = (/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) -"aHQ" = (/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) -"aHR" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/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 = "dark"},/area/medical/morgue) -"aHS" = (/obj/machinery/light_switch{pixel_x = -22; pixel_y = 25},/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 = "dark"},/area/medical/morgue) -"aHT" = (/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) -"aHU" = (/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 = "dark"},/area/medical/morgue) -"aHV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/patients_rooms) -"aHW" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"aHX" = (/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) -"aHY" = (/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) -"aHZ" = (/obj/machinery/computer/rdconsole/mechanic,/turf/simulated/floor,/area/engineering/mechanics) -"aIa" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/engineering/mechanics) -"aIb" = (/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) -"aIc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/fore) -"aId" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/fore) -"aIe" = (/turf/simulated/floor{icon_state = "greencorner"},/area/hallway/primary/starboard) -"aIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "green"},/area/hallway/primary/starboard) -"aIg" = (/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) -"aIh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "whitehall"; dir = 5},/area/medical/medbay) -"aIi" = (/turf/simulated/floor,/area/hallway/primary/starboard) -"aIj" = (/obj/machinery/light,/turf/simulated/floor,/area/hallway/primary/starboard) -"aIk" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIl" = (/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) -"aIm" = (/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIn" = (/obj/machinery/camera{c_tag = "Fore Starboard Hall Center"; dir = 1},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIp" = (/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) -"aIq" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIr" = (/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) -"aIs" = (/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) -"aIt" = (/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) -"aIu" = (/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) -"aIv" = (/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) -"aIw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIx" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/hallway/primary/starboard) -"aIy" = (/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) -"aIz" = (/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) -"aIA" = (/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) -"aIB" = (/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/hallway/primary/starboard) -"aIC" = (/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) -"aID" = (/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) -"aIE" = (/turf/simulated/floor,/area/engineering/break_room) -"aIF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/break_room) -"aIG" = (/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) -"aIH" = (/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) -"aII" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aIJ" = (/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) -"aIK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor,/area/engineering/engine) -"aIL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/engineering/engine) -"aIM" = (/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) -"aIN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aIO" = (/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) -"aIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aIQ" = (/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) -"aIR" = (/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) -"aIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aIT" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/engineering/engine) -"aIU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aIV" = (/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) -"aIW" = (/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) -"aIX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aIY" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/engineering/supermatter_room) -"aIZ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/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 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJb" = (/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) -"aJc" = (/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) -"aJd" = (/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) -"aJe" = (/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) -"aJf" = (/obj/machinery/atmospherics/pipe/manifold4w/insulated/visible/blue,/turf/simulated/floor,/area/engineering/supermatter_room) -"aJg" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJh" = (/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) -"aJi" = (/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) -"aJj" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/derelictparts/fore) -"aJk" = (/obj/item/weapon/caution/cone,/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/derelictparts/fore) -"aJl" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aJm" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aJn" = (/turf/simulated/floor/engine,/area/science/telescience) -"aJo" = (/turf/simulated/wall,/area/science/telescience) -"aJp" = (/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) -"aJq" = (/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) -"aJr" = (/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) -"aJs" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJt" = (/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) -"aJu" = (/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) -"aJv" = (/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},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJx" = (/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"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJy" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "green"},/area/hallway/primary/starboard) -"aJB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "greencorner"},/area/hallway/primary/starboard) -"aJC" = (/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) -"aJD" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/medical/genetics) -"aJE" = (/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aJF" = (/turf/simulated/wall,/area/medical/genetics) -"aJG" = (/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) -"aJH" = (/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) -"aJI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aJJ" = (/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) -"aJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJP" = (/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJR" = (/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aJS" = (/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,/turf/simulated/floor,/area/engineering/mechanics) -"aJT" = (/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) -"aJU" = (/obj/machinery/r_n_d/fabricator/mechanic_fab,/obj/machinery/door/window{dir = 2; name = "Mechanics Desk"},/turf/simulated/floor,/area/engineering/mechanics) -"aJV" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/fore) -"aJW" = (/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) -"aJX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"aJY" = (/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) -"aJZ" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hydroponics) -"aKa" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hydroponics) -"aKb" = (/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) -"aKc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hydroponics) -"aKd" = (/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) -"aKe" = (/turf/simulated/wall,/area/hydroponics) -"aKf" = (/obj/structure/closet/emcloset,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/hallway/primary/starboard) -"aKg" = (/turf/simulated/wall,/area/hallway/primary/starboard) -"aKh" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKi" = (/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) -"aKj" = (/turf/simulated/wall,/area/storage/tech) -"aKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/tech) -"aKl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/turf/simulated/floor/plating,/area/storage/tech) -"aKm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/tech) -"aKn" = (/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,/turf/simulated/floor,/area/engineering/break_room) -"aKo" = (/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) -"aKp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/engineering/break_room) -"aKq" = (/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) -"aKr" = (/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) -"aKs" = (/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) -"aKt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aKu" = (/obj/structure/closet/radiation,/turf/simulated/floor,/area/engineering/engine) -"aKv" = (/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) -"aKw" = (/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) -"aKx" = (/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) -"aKy" = (/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) -"aKz" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKA" = (/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aKB" = (/obj/structure/cable,/obj/machinery/power/rad_collector{anchored = 0; dir = 4},/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aKC" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKD" = (/obj/machinery/atmospherics/binary/pump{dir = 1; icon_state = "intact_on"; on = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKE" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKF" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aKG" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/engine,/area/science/telescience) -"aKH" = (/obj/machinery/telepad,/turf/simulated/floor/engine,/area/science/telescience) -"aKI" = (/obj/item/beacon,/turf/simulated/floor/engine,/area/science/telescience) -"aKJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/engine,/area/science/telescience) -"aKK" = (/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) -"aKL" = (/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) -"aKM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aKN" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aKO" = (/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) -"aKP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aKQ" = (/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aKR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aKS" = (/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) -"aKT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aKU" = (/obj/structure/window/reinforced{dir = 8},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aKV" = (/turf/simulated/floor,/area/medical/genetics) -"aKW" = (/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) -"aKX" = (/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) -"aKY" = (/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) -"aKZ" = (/turf/simulated/wall,/area/security/checkpoint/medical) -"aLa" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aLb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aLc" = (/turf/simulated/wall,/area/hallway/primary/fore) -"aLd" = (/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aLe" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/fore) -"aLf" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aLg" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/turf/simulated/floor,/area/hallway/primary/fore) -"aLh" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/fore) -"aLi" = (/turf/simulated/floor{icon_state = "greencorner"},/area/hallway/primary/fore) -"aLj" = (/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) -"aLk" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor,/area/hydroponics) -"aLl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hydroponics) -"aLm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hydroponics) -"aLn" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aLo" = (/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) -"aLp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aLq" = (/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) -"aLr" = (/turf/simulated/floor/plating,/area/storage/tech) -"aLs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aLt" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/storage/tech) -"aLu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/tech) -"aLv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aLw" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating,/area/storage/tech) -"aLx" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/engineering/break_room) -"aLy" = (/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) -"aLz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aLA" = (/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) -"aLB" = (/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) -"aLC" = (/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) -"aLD" = (/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) -"aLE" = (/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) -"aLF" = (/obj/machinery/vending/cigarette,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/engineering/break_room) -"aLG" = (/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) -"aLH" = (/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) -"aLI" = (/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) -"aLJ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aLK" = (/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor,/area/engineering/supermatter_room) -"aLL" = (/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) -"aLM" = (/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/supermatter_room) -"aLN" = (/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) -"aLO" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aLP" = (/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) -"aLQ" = (/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aLR" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/turf/simulated/floor,/area/engineering/supermatter_room) -"aLS" = (/obj/item/pipe_planner,/turf/simulated/floor,/area/engineering/supermatter_room) -"aLT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area) -"aLU" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aLV" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aLW" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aLX" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aLY" = (/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) -"aLZ" = (/obj/machinery/space_heater,/obj/item/weapon/wrench,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aMa" = (/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) -"aMb" = (/obj/machinery/hologram/holopad{name = "\improper Acid-Proof AI holopad"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aMc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/engine,/area/science/telescience) -"aMd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/engine,/area/science/telescience) -"aMe" = (/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) -"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/dna_scannernew,/turf/simulated/floor{dir = 5; icon_state = "whitepurple"},/area/medical/genetics) -"aMm" = (/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) -"aMn" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 4},/turf/simulated/floor,/area/medical/medbay) -"aMo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aMp" = (/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) -"aMq" = (/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) -"aMr" = (/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) -"aMs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aMt" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMu" = (/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) -"aMv" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor{dir = 6; icon_state = "whitepurple"},/area/medical/genetics) -"aMw" = (/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) -"aMx" = (/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) -"aMy" = (/obj/item/device/radio/intercom{pixel_y = 24},/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) -"aMz" = (/obj/machinery/computer/secure_data,/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/checkpoint/medical) -"aMA" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aMB" = (/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,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aMC" = (/obj/machinery/optable,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aMD" = (/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) -"aME" = (/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) -"aMF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/fore) -"aMG" = (/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue{dir = 1},/turf/simulated/floor,/area/medical/medbay) -"aMH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/hallway/primary/fore) -"aMI" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hallway/primary/fore) -"aMJ" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/pos{name = "Hydrophonics point of sale"},/turf/simulated/floor,/area/hydroponics) -"aMK" = (/obj/item/weapon/stool,/turf/simulated/floor,/area/hydroponics) -"aML" = (/turf/simulated/floor{dir = 1; icon_state = "green"},/area/hydroponics) -"aMM" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor{dir = 1; icon_state = "green"},/area/hydroponics) -"aMN" = (/turf/simulated/floor{dir = 5; icon_state = "green"},/area/hydroponics) -"aMO" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aMP" = (/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) -"aMQ" = (/obj/machinery/botany/editor,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aMR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aMS" = (/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) -"aMT" = (/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) -"aMU" = (/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) -"aMV" = (/obj/machinery/requests_console{department = "Tech storage"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aMW" = (/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) -"aMX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/break_room) -"aMY" = (/obj/structure/cable,/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/turf/simulated/floor{icon_state = "yellowcorner"},/area/engineering/break_room) -"aMZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/engineering/break_room) -"aNa" = (/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) -"aNb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/cola,/turf/simulated/floor{icon_state = "yellow"},/area/engineering/break_room) -"aNc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aNd" = (/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) -"aNe" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/engineering/engine) -"aNf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aNg" = (/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) -"aNh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine) -"aNi" = (/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) -"aNj" = (/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) -"aNk" = (/obj/structure/table/reinforced,/turf/simulated/floor,/area/engineering/supermatter_room) -"aNl" = (/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) -"aNm" = (/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) -"aNn" = (/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) -"aNo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aNp" = (/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) -"aNq" = (/obj/machinery/meter/turf{pixel_x = -32},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aNr" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Chamber"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aNs" = (/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) -"aNt" = (/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) -"aNu" = (/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) -"aNv" = (/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) -"aNw" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 9},/turf/simulated/floor,/area/engineering/supermatter_room) -"aNx" = (/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) -"aNy" = (/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) -"aNz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area) -"aNA" = (/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) -"aNB" = (/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) -"aNC" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aND" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aNE" = (/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) -"aNF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aNG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aNH" = (/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) -"aNI" = (/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) -"aNJ" = (/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) -"aNK" = (/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) -"aNL" = (/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) -"aNM" = (/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) -"aNN" = (/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) -"aNO" = (/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) -"aNP" = (/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) -"aNQ" = (/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) -"aNR" = (/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) -"aNS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/science/mixing) -"aNT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/mixing) -"aNU" = (/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) -"aNV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aNW" = (/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) -"aNX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aNY" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aNZ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOa" = (/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) -"aOb" = (/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) -"aOc" = (/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) -"aOd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOe" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOf" = (/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) -"aOg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOh" = (/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) -"aOi" = (/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) -"aOj" = (/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) -"aOk" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/security/checkpoint/medical) -"aOl" = (/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) -"aOm" = (/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) -"aOn" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/security/checkpoint/medical) -"aOo" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor,/area/security/checkpoint/medical) -"aOp" = (/obj/machinery/newscaster{pixel_x = 32},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) -"aOq" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aOr" = (/obj/machinery/camera{c_tag = "Fore Starboard Hallway North East"; dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"aOs" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/simulated/floor,/area/hydroponics) -"aOt" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor,/area/hydroponics) -"aOu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/hydroponics) -"aOv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hydroponics) -"aOw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/hydroponics) -"aOx" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hydroponics) -"aOy" = (/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) -"aOz" = (/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) -"aOA" = (/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) -"aOB" = (/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) -"aOC" = (/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{dir = 1; icon_state = "pipe-j2s"; sortType = 21},/obj/effect/nmpi,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aOD" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"aOE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aOF" = (/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) -"aOG" = (/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) -"aOH" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aOI" = (/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) -"aOJ" = (/turf/simulated/wall,/area/maintenance/auxcharge) -"aOK" = (/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) -"aOL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/engine) -"aOM" = (/obj/machinery/door/window{dir = 8; name = "Monkey Pen"; req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) -"aON" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall,/area/engineering/engine) -"aOO" = (/turf/simulated/wall,/area/engineering/engine) -"aOP" = (/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) -"aOQ" = (/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) -"aOR" = (/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) -"aOS" = (/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) -"aOT" = (/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) -"aOU" = (/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) -"aOV" = (/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) -"aOW" = (/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) -"aOX" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aOY" = (/obj/structure/table/reinforced,/turf/simulated/floor,/area/engineering/engine) -"aOZ" = (/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) -"aPa" = (/obj/machinery/computer/general_air_control/atmos_automation{frequency = 1443},/turf/simulated/floor,/area/engineering/supermatter_room) -"aPb" = (/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) -"aPc" = (/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) -"aPd" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "SM_sensor"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aPe" = (/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) -"aPf" = (/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aPg" = (/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) -"aPh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/engineering/supermatter_room) -"aPi" = (/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) -"aPj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area) -"aPk" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aPl" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPn" = (/obj/item/device/assembly/igniter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPo" = (/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) -"aPp" = (/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) -"aPq" = (/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) -"aPr" = (/obj/item/beacon,/turf/simulated/floor/engine,/area/science/xenobiology) -"aPs" = (/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) -"aPt" = (/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) -"aPu" = (/obj/machinery/computer/telescience,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aPv" = (/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) -"aPw" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aPx" = (/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) -"aPy" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/wall/r_wall,/area/science/mixing) -"aPz" = (/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) -"aPA" = (/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) -"aPB" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aPC" = (/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) -"aPD" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aPE" = (/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) -"aPF" = (/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) -"aPG" = (/obj/machinery/light{dir = 4},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aPH" = (/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) -"aPI" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/medbay) -"aPJ" = (/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) -"aPK" = (/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) -"aPL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aPM" = (/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) -"aPN" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor{icon_state = "red"; dir = 9},/area/security/checkpoint/medical) -"aPO" = (/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) -"aPP" = (/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) -"aPQ" = (/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) -"aPR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aPS" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aPT" = (/obj/structure/table,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aPU" = (/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) -"aPV" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor,/area/hallway/primary/fore) -"aPW" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/fore) -"aPX" = (/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/fore) -"aPY" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor,/area/hallway/primary/fore) -"aPZ" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/fore) -"aQa" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor,/area/hallway/primary/fore) -"aQb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aQc" = (/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) -"aQd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hydroponics) -"aQe" = (/turf/simulated/floor,/area/hydroponics) -"aQf" = (/obj/machinery/seed_extractor,/turf/simulated/floor,/area/hydroponics) -"aQg" = (/obj/machinery/biogenerator,/turf/simulated/floor,/area/hydroponics) -"aQh" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hydroponics) -"aQi" = (/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) -"aQj" = (/obj/structure/sink{dir = 8; pixel_x = -11},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aQk" = (/obj/machinery/botany/extractor,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aQl" = (/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) -"aQm" = (/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},/turf/simulated/floor/plating,/area/storage/tech) -"aQn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aQo" = (/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) -"aQp" = (/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) -"aQq" = (/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) -"aQr" = (/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) -"aQs" = (/obj/machinery/recharge_station,/turf/simulated/floor,/area/maintenance/auxcharge) -"aQt" = (/turf/simulated/floor,/area/maintenance/auxcharge) -"aQu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/auxcharge) -"aQv" = (/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) -"aQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/auxcharge) -"aQx" = (/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) -"aQy" = (/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) -"aQz" = (/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) -"aQA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/engine) -"aQB" = (/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) -"aQC" = (/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) -"aQD" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aQE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aQF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aQG" = (/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) -"aQH" = (/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) -"aQI" = (/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) -"aQJ" = (/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) -"aQK" = (/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) -"aQL" = (/obj/machinery/door/airlock/hatch{req_access_txt = "11"},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aQM" = (/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) -"aQN" = (/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) -"aQO" = (/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) -"aQP" = (/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) -"aQQ" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aQR" = (/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aQS" = (/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) -"aQT" = (/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) -"aQU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aQV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aQW" = (/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) -"aQX" = (/turf/simulated/floor/engine/airless,/area/science/mixing) -"aQY" = (/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) -"aQZ" = (/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{frequency = 1449; id_tag = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/science/mixing) -"aRa" = (/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) -"aRb" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRc" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRd" = (/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) -"aRe" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRf" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRg" = (/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) -"aRh" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aRi" = (/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,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aRj" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor{dir = 5; icon_state = "whitepurple"},/area/medical/genetics) -"aRk" = (/obj/machinery/camera{c_tag = "Genetics Monkey Pen"; dir = 8; network = list("SS13","RD")},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aRl" = (/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) -"aRm" = (/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) -"aRn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aRo" = (/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) -"aRp" = (/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,/turf/simulated/floor,/area/engineering/engine) -"aRq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aRr" = (/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) -"aRs" = (/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) -"aRt" = (/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) -"aRu" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{dir = 6; icon_state = "whitepurple"},/area/medical/genetics) -"aRv" = (/turf/simulated/floor{dir = 8; icon_state = "greencorner"},/area/hallway/primary/fore) -"aRw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"aRx" = (/obj/machinery/camera{c_tag = "Bar Storage"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/projectile/shotgun/pump/sc_pump,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aRy" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aRz" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aRA" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/bar) -"aRB" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aRC" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor,/area/hydroponics) -"aRD" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor,/area/hydroponics) -"aRE" = (/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) -"aRF" = (/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) -"aRG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/emcloset,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aRH" = (/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) -"aRI" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/storage/tech) -"aRJ" = (/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) -"aRK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/auxcharge) -"aRL" = (/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) -"aRM" = (/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) -"aRN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/auxcharge) -"aRO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aRP" = (/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) -"aRQ" = (/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) -"aRR" = (/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue,/turf/simulated/floor,/area/medical/medbay) -"aRS" = (/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) -"aRT" = (/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) -"aRU" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRW" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRX" = (/obj/machinery/newscaster{pixel_y = -32},/turf/simulated/floor,/area/engineering/engine) -"aRY" = (/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) -"aRZ" = (/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) -"aSa" = (/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) -"aSb" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSc" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSd" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aSe" = (/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) -"aSf" = (/obj/structure/grille/broken,/turf/space,/area) -"aSg" = (/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) -"aSh" = (/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) -"aSi" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aSj" = (/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) -"aSk" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aSl" = (/obj/item/weapon/caution/cone,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/derelictparts/fore) -"aSm" = (/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) -"aSn" = (/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) -"aSo" = (/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) -"aSp" = (/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) -"aSq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSt" = (/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) -"aSu" = (/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) -"aSv" = (/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) -"aSw" = (/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) -"aSx" = (/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) -"aSy" = (/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) -"aSz" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 4},/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor,/area/medical/medbay) -"aSA" = (/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) -"aSB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aSC" = (/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) -"aSD" = (/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) -"aSE" = (/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) -"aSF" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research"; req_access_txt = "5; 9"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aSG" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/genetics) -"aSH" = (/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) -"aSI" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/genetics) -"aSJ" = (/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/medical/medbay) -"aSK" = (/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) -"aSL" = (/obj/structure/bed/roller,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/medical/medbay) -"aSM" = (/turf/simulated/wall,/area/medical/medbay) -"aSN" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aSO" = (/obj/machinery/computer/med_data,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aSP" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aSQ" = (/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aSR" = (/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aSS" = (/obj/structure/sign/greencross,/turf/simulated/wall,/area/medical/medbay) -"aST" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aSU" = (/obj/machinery/camera{c_tag = "Fore Starboard Hallway"; dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"aSV" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aSW" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aSX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aSY" = (/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) -"aSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/hydroponics) -"aTa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hydroponics) -"aTb" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/hydroponics) -"aTc" = (/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) -"aTd" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aTe" = (/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) -"aTf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aTg" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/wirecutters/clippers,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aTh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hydroponics) -"aTi" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/storage/tech) -"aTj" = (/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) -"aTk" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"aTl" = (/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) -"aTm" = (/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) -"aTn" = (/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) -"aTo" = (/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) -"aTp" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/maintenance/auxcharge) -"aTq" = (/obj/machinery/pipedispenser,/turf/simulated/floor,/area/maintenance/auxcharge) -"aTr" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall,/area/maintenance/auxcharge) -"aTs" = (/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) -"aTt" = (/obj/structure/closet/radiation,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aTu" = (/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) -"aTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/engineering/engine) -"aTw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aTx" = (/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) -"aTy" = (/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) -"aTz" = (/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) -"aTA" = (/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) -"aTB" = (/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aTC" = (/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) -"aTD" = (/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) -"aTE" = (/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) -"aTF" = (/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) -"aTG" = (/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aTH" = (/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aTI" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aTJ" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aTK" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aTL" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aTM" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aTN" = (/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) -"aTO" = (/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) -"aTP" = (/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) -"aTQ" = (/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) -"aTR" = (/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) -"aTS" = (/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) -"aTT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/mixing) -"aTU" = (/obj/structure/closet/bombcloset,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTV" = (/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) -"aTW" = (/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) -"aTX" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTY" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aUa" = (/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) -"aUb" = (/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) -"aUc" = (/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) -"aUd" = (/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) -"aUe" = (/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},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aUf" = (/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) -"aUg" = (/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) -"aUh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 23},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUi" = (/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) -"aUj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUk" = (/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) -"aUl" = (/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) -"aUm" = (/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) -"aUn" = (/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) -"aUo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aUp" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUq" = (/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) -"aUr" = (/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) -"aUs" = (/obj/structure/sign/double/barsign,/turf/simulated/wall,/area/crew_quarters/bar) -"aUt" = (/turf/simulated/wall,/area/crew_quarters/bar) -"aUu" = (/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) -"aUv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/bar) -"aUw" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aUx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aUy" = (/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) -"aUz" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aUA" = (/turf/simulated/floor{icon_state = "green"; dir = 10},/area/hydroponics) -"aUB" = (/turf/simulated/floor{icon_state = "green"},/area/hydroponics) -"aUC" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor{icon_state = "green"},/area/hydroponics) -"aUD" = (/turf/simulated/floor{icon_state = "green"; dir = 6},/area/hydroponics) -"aUE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aUF" = (/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) -"aUG" = (/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) -"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aUI" = (/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) -"aUJ" = (/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) -"aUK" = (/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) -"aUL" = (/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) -"aUM" = (/turf/simulated/wall,/area/maintenance/fsmaint) -"aUN" = (/turf/simulated/wall,/area/engineering/ce) -"aUO" = (/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) -"aUP" = (/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) -"aUQ" = (/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) -"aUR" = (/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) -"aUS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/engineering/ce) -"aUT" = (/obj/machinery/vending/tool,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aUU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aUV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/engine) -"aUW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aUX" = (/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) -"aUY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor,/area/engineering/engine) -"aUZ" = (/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) -"aVa" = (/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) -"aVb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering SMES"},/turf/simulated/floor,/area/engineering/engine) -"aVc" = (/obj/machinery/prism,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aVd" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVe" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVf" = (/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) -"aVg" = (/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) -"aVh" = (/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) -"aVi" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVj" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 5},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVk" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 9},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVl" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVm" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aVn" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aVo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVp" = (/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) -"aVq" = (/obj/machinery/light_construct/small,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVr" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aVs" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVt" = (/obj/item/weapon/shard,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aVu" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aVv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall,/area/maintenance/fore) -"aVw" = (/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) -"aVx" = (/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) -"aVy" = (/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) -"aVz" = (/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) -"aVA" = (/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) -"aVB" = (/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) -"aVC" = (/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) -"aVD" = (/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) -"aVE" = (/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) -"aVF" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aVG" = (/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) -"aVH" = (/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) -"aVI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/mixing) -"aVJ" = (/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) -"aVK" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aVL" = (/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) -"aVM" = (/turf/simulated/wall,/area/science/hallway) -"aVN" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aVO" = (/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) -"aVP" = (/obj/machinery/light,/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aVQ" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aVR" = (/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) -"aVS" = (/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) -"aVT" = (/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) -"aVU" = (/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) -"aVV" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aVW" = (/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) -"aVX" = (/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) -"aVY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aVZ" = (/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) -"aWa" = (/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) -"aWb" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWc" = (/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) -"aWd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aWe" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWf" = (/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) -"aWg" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aWh" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWi" = (/obj/machinery/newscaster{pixel_y = 32},/obj/item/weapon/newspaper,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWj" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWk" = (/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) -"aWl" = (/obj/machinery/light{dir = 1},/obj/machinery/media/jukebox/bar,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWm" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWn" = (/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) -"aWo" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWq" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWr" = (/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/hydroponics) -"aWs" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aWt" = (/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) -"aWu" = (/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,/obj/item/device/eftpos{eftpos_name = "Botany EFTPOS scanner"},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aWv" = (/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) -"aWw" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plating,/area/storage/tech) -"aWx" = (/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) -"aWy" = (/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) -"aWz" = (/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) -"aWA" = (/obj/machinery/light/small{dir = 8},/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aWB" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 8},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aWC" = (/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) -"aWD" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aWE" = (/obj/machinery/computer/station_alert,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aWF" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aWG" = (/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) -"aWH" = (/obj/machinery/vending/engivend,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aWI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aWJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aWK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aWL" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor,/area/engineering/engine) -"aWM" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aWN" = (/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) -"aWO" = (/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) -"aWP" = (/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) -"aWQ" = (/turf/simulated/wall,/area/derelictparts/library) -"aWR" = (/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) -"aWS" = (/turf/simulated/wall,/area/maintenance/asmaint2) -"aWT" = (/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) -"aWU" = (/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) -"aWV" = (/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) -"aWW" = (/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},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aWX" = (/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) -"aWY" = (/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) -"aWZ" = (/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) -"aXa" = (/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) -"aXb" = (/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) -"aXc" = (/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) -"aXd" = (/turf/simulated/wall/r_wall,/area/science/hallway) -"aXe" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aXf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/telescience) -"aXg" = (/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) -"aXh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/hallway) -"aXi" = (/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) -"aXj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/hallway) -"aXk" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/science/hallway) -"aXl" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aXm" = (/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) -"aXn" = (/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) -"aXo" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aXp" = (/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aXq" = (/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) -"aXr" = (/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) -"aXs" = (/turf/simulated/wall/r_wall,/area/medical/paramedics) -"aXt" = (/turf/simulated/wall,/area/medical/paramedics) -"aXu" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Paramedic station"; req_access_txt = "500"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aXv" = (/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) -"aXw" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/paramedics) -"aXy" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/medbay) -"aXz" = (/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) -"aXA" = (/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) -"aXB" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aXC" = (/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) -"aXD" = (/turf/simulated/floor{dir = 9; icon_state = "whitegreen"},/area/medical/medbay) -"aXE" = (/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/medbay) -"aXF" = (/turf/simulated/floor{dir = 1; icon_state = "whitegreencorner"},/area/medical/medbay) -"aXG" = (/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aXH" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aXI" = (/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aXJ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aXK" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aXL" = (/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) -"aXM" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"aXN" = (/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) -"aXO" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/kitchen) -"aXP" = (/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) -"aXQ" = (/turf/simulated/wall/r_wall,/area/storage/tech) -"aXR" = (/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) -"aXS" = (/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) -"aXT" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/tech) -"aXU" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibdown1"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aXV" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aXW" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aXX" = (/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYa" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYb" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYc" = (/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) -"aYd" = (/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) -"aYe" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aYf" = (/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) -"aYg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aYh" = (/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 (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/engineering/engine) -"aYi" = (/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) -"aYj" = (/obj/machinery/power/battery/smes,/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) -"aYk" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aYl" = (/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) -"aYm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aYn" = (/obj/machinery/power/battery/smes,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/antimatter_room) -"aYo" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering Supermatter South"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aYp" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/light,/turf/simulated/floor,/area/engineering/supermatter_room) -"aYq" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor,/area/engineering/supermatter_room) -"aYr" = (/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) -"aYs" = (/turf/simulated/floor/wood,/area/derelictparts/library) -"aYt" = (/obj/structure/bed/chair/office/dark,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"aYu" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/derelictparts/library) -"aYv" = (/obj/item/trash/candy,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood,/area/derelictparts/library) -"aYw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYx" = (/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) -"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYA" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aYC" = (/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) -"aYD" = (/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) -"aYE" = (/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) -"aYF" = (/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) -"aYG" = (/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) -"aYH" = (/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) -"aYI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aYJ" = (/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) -"aYK" = (/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aYL" = (/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) -"aYM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYN" = (/obj/structure/sign/fire{pixel_y = 32},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYO" = (/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYP" = (/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) -"aYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYR" = (/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) -"aYS" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aYU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/lab) -"aYV" = (/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) -"aYW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whiteblue"; dir = 1},/area/science/hallway) -"aYX" = (/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) -"aYY" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aYZ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZa" = (/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) -"aZb" = (/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZc" = (/obj/machinery/camera{c_tag = "Research Division Access"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZd" = (/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) -"aZe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/medical/medbay) -"aZg" = (/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) -"aZh" = (/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) -"aZi" = (/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) -"aZj" = (/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) -"aZk" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aZl" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZm" = (/obj/structure/bed/chair/wood/normal,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZo" = (/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) -"aZp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"aZq" = (/obj/item/weapon/packageWrap,/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) -"aZr" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"aZs" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"aZt" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"aZu" = (/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) -"aZv" = (/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) -"aZw" = (/obj/item/weapon/reagent_containers/food/snacks/cookie{desc = "We are not satiated."; name = "grandma's cookie"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aZx" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/gloves/rainbow,/obj/item/clothing/head/soft/rainbow,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aZy" = (/obj/item/clothing/under/rainbow,/obj/item/clothing/shoes/rainbow,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aZz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aZA" = (/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) -"aZB" = (/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) -"aZC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) -"aZD" = (/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) -"aZE" = (/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) -"aZF" = (/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) -"aZG" = (/turf/simulated/wall/r_wall,/area/engineering/ce) -"aZH" = (/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) -"aZI" = (/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) -"aZJ" = (/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) -"aZK" = (/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) -"aZL" = (/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) -"aZM" = (/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) -"aZN" = (/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) -"aZO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aZP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aZQ" = (/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) -"aZR" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating/airless,/area) -"aZS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"aZT" = (/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) -"aZU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/derelictparts/library) -"aZV" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/trash/cheesie,/turf/simulated/floor/wood,/area/derelictparts/library) -"aZW" = (/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) -"aZX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"aZY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/derelictparts/library) -"aZZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bab" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bac" = (/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) -"bad" = (/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) -"bae" = (/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) -"baf" = (/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) -"bag" = (/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) -"bah" = (/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) -"bai" = (/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) -"baj" = (/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) -"bak" = (/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bal" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bam" = (/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) -"ban" = (/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) -"bao" = (/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) -"bap" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baq" = (/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) -"bar" = (/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) -"bas" = (/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) -"bat" = (/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) -"bau" = (/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) -"bav" = (/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) -"baw" = (/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) -"bax" = (/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) -"bay" = (/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) -"baz" = (/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) -"baA" = (/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) -"baB" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"baC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"baD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"baE" = (/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) -"baF" = (/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) -"baG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"baH" = (/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) -"baI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"baJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"baK" = (/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) -"baL" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"baM" = (/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) -"baN" = (/obj/structure/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"baO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"baP" = (/obj/item/toy/cards,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"baQ" = (/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) -"baR" = (/obj/structure/disposalpipe/segment,/obj/machinery/cooking/icemachine,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"baS" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"baT" = (/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/cooking/cerealmaker,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"baU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"baV" = (/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) -"baW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) -"baX" = (/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) -"baY" = (/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) -"baZ" = (/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) -"bba" = (/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) -"bbb" = (/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) -"bbc" = (/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) -"bbd" = (/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) -"bbe" = (/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) -"bbf" = (/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) -"bbg" = (/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) -"bbh" = (/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) -"bbi" = (/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) -"bbj" = (/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) -"bbk" = (/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"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbl" = (/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) -"bbm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{sortType = 11},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"bbn" = (/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = 32},/turf/simulated/floor,/area/engineering/engine) -"bbo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_y = 32},/turf/space,/area) -"bbp" = (/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) -"bbq" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bbr" = (/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) -"bbs" = (/obj/structure/table/woodentable,/obj/item/trash/chips{pixel_x = -4; pixel_y = 8},/turf/simulated/floor/wood,/area/derelictparts/library) -"bbt" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/derelictparts/library) -"bbu" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bbv" = (/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bbw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bbx" = (/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) -"bby" = (/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) -"bbz" = (/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) -"bbA" = (/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) -"bbB" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bbC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bbD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bbE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bbF" = (/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) -"bbG" = (/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/science/xenobiology) -"bbH" = (/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) -"bbI" = (/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) -"bbJ" = (/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) -"bbK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbL" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bbM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bbN" = (/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) -"bbO" = (/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) -"bbP" = (/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) -"bbQ" = (/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) -"bbR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 11},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bbS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bbT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/science/hallway) -"bbU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/hallway) -"bbV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/hallway) -"bbW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/hallway) -"bbX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bca" = (/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) -"bcb" = (/obj/structure/closet/secure_closet/paramedic,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcc" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/closet/paramedic,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcd" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bce" = (/obj/machinery/computer/crew,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcf" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcg" = (/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) -"bch" = (/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) -"bci" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcj" = (/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) -"bck" = (/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) -"bcl" = (/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) -"bcm" = (/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) -"bcn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bco" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcp" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcq" = (/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) -"bcr" = (/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) -"bcs" = (/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor,/area/crew_quarters/bar) -"bct" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bcu" = (/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) -"bcv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bcw" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bcx" = (/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) -"bcy" = (/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) -"bcz" = (/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) -"bcA" = (/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) -"bcB" = (/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},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/kitchen) -"bcC" = (/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) -"bcD" = (/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) -"bcE" = (/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) -"bcF" = (/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) -"bcG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bcH" = (/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) -"bcI" = (/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) -"bcJ" = (/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) -"bcK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bcL" = (/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) -"bcM" = (/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) -"bcN" = (/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) -"bcO" = (/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) -"bcP" = (/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) -"bcQ" = (/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) -"bcR" = (/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) -"bcS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bcT" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bcU" = (/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) -"bcV" = (/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) -"bcW" = (/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bcX" = (/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) -"bcY" = (/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bcZ" = (/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) -"bda" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"},/area/engineering/engine) -"bdb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"bdc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bdd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bde" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/engine) -"bdf" = (/obj/machinery/camera{c_tag = "Engineering South"; dir = 8; network = list("MINE")},/turf/simulated/floor,/area/engineering/engine) -"bdg" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/wood,/area/derelictparts/library) -"bdh" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bdi" = (/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) -"bdj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bdk" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdm" = (/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) -"bdn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdo" = (/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) -"bdp" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = -30},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bdq" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bdr" = (/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) -"bds" = (/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) -"bdt" = (/turf/simulated/wall/r_wall,/area/science/server) -"bdu" = (/turf/simulated/wall,/area/science/server) -"bdv" = (/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) -"bdw" = (/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) -"bdx" = (/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,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bdy" = (/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) -"bdz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/rd) -"bdA" = (/turf/simulated/wall,/area/science/rd) -"bdB" = (/turf/simulated/shuttle/wall{icon_state = "swall_s6"},/area/shuttle/research/station) -"bdC" = (/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/shuttle/research/station) -"bdD" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/research/station) -"bdE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/science/hallway) -"bdF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bdG" = (/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/hallway) -"bdH" = (/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) -"bdI" = (/turf/simulated/wall/r_wall,/area/science/lab) -"bdJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/lab) -"bdK" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bdL" = (/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,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bdM" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry) -"bdN" = (/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) -"bdO" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bdP" = (/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) -"bdQ" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 2; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/pos{name = "Chemistry point of sale"},/turf/simulated/floor/plating,/area/medical/chemistry) -"bdR" = (/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) -"bdS" = (/obj/machinery/camera{c_tag = "Bar West"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdT" = (/obj/machinery/hologram/holopad,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdU" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdV" = (/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdW" = (/obj/machinery/cooking/still,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdX" = (/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) -"bdY" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bea" = (/obj/machinery/cooking,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beb" = (/obj/structure/table,/obj/item/weapon/packageWrap,/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) -"bec" = (/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) -"bed" = (/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) -"bee" = (/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) -"bef" = (/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"beg" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/trash/sosjerky,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"beh" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bei" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bej" = (/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) -"bek" = (/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) -"bel" = (/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) -"bem" = (/turf/simulated/wall/r_wall,/area/engineering/engine_storage) -"ben" = (/turf/simulated/wall,/area/engineering/engine_storage) -"beo" = (/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) -"bep" = (/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) -"beq" = (/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,/turf/simulated/floor,/area/engineering/engine_storage) -"ber" = (/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) -"bes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"bet" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"beu" = (/obj/machinery/door/airlock/glass{name = "Derelict Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/library) -"bev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/library) -"bew" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/derelictparts/library) -"bex" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bey" = (/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) -"bez" = (/turf/simulated/wall,/area/science/xenobiology) -"beA" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/science/xenobiology) -"beB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"beC" = (/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) -"beD" = (/obj/machinery/camera{c_tag = "Xenobiology Northeast"; dir = 8; network = list("SS13","RD")},/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) -"beE" = (/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},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"beF" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"beG" = (/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) -"beH" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/monkey_recycler,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"beI" = (/obj/machinery/computer/rdservercontrol,/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"beJ" = (/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) -"beK" = (/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) -"beL" = (/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) -"beM" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"beN" = (/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) -"beO" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"beP" = (/obj/machinery/computer/robotics,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"beQ" = (/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) -"beR" = (/turf/simulated/shuttle/wall{icon_state = "swall3"},/area/shuttle/research/station) -"beS" = (/obj/machinery/computer/shuttle_control/research,/turf/simulated/shuttle/floor,/area/shuttle/research/station) -"beT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"beU" = (/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) -"beV" = (/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) -"beW" = (/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) -"beX" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"beY" = (/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) -"beZ" = (/obj/machinery/r_n_d/fabricator/protolathe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"bfa" = (/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) -"bfb" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/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) -"bfc" = (/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) -"bfd" = (/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) -"bfe" = (/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) -"bff" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfg" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/machinery/camera{c_tag = "Chemistry"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfh" = (/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfi" = (/obj/machinery/chem_dispenser/mapping,/turf/simulated/floor{icon_state = "whiteyellow"; dir = 9},/area/medical/chemistry) -"bfj" = (/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) -"bfk" = (/obj/machinery/chem_master,/turf/simulated/floor{dir = 5; icon_state = "whiteyellow"},/area/medical/chemistry) -"bfl" = (/turf/simulated/floor{icon_state = "greencorner"; dir = 1},/area/hallway/primary/fore) -"bfm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"bfn" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bfo" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwing = 1},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bfp" = (/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bfq" = (/obj/structure/table/reinforced,/obj/machinery/pos{name = "Kitchen point of sale"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bfr" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bfs" = (/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) -"bft" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cooking/grill,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bfu" = (/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) -"bfv" = (/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) -"bfw" = (/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) -"bfx" = (/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) -"bfy" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 19},/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) -"bfz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bfA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bfB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"bfD" = (/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) -"bfE" = (/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) -"bfF" = (/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) -"bfG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bfH" = (/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) -"bfI" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bfJ" = (/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) -"bfK" = (/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) -"bfL" = (/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) -"bfM" = (/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) -"bfN" = (/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) -"bfO" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/engine_storage) -"bfP" = (/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) -"bfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_storage) -"bfR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine_storage) -"bfS" = (/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) -"bfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/simulated/floor{icon_state = "yellow"; dir = 10},/area/engineering/engine) -"bfU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "yellow"},/area/engineering/engine) -"bfV" = (/obj/machinery/light/small{dir = 8},/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/library) -"bfW" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bfX" = (/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) -"bfY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/library) -"bfZ" = (/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) -"bga" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgb" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgc" = (/obj/machinery/light_construct/small{dir = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgd" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bge" = (/obj/machinery/light_construct/small{dir = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood{icon_state = "wood-broken4"},/area/derelictparts/library) -"bgf" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bgg" = (/obj/machinery/light_construct/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"bgh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bgi" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/science/xenobiology) -"bgj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"bgk" = (/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) -"bgl" = (/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) -"bgm" = (/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) -"bgn" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgo" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/hallway/primary/fore) -"bgq" = (/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) -"bgr" = (/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) -"bgs" = (/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"},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bgt" = (/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) -"bgu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bgv" = (/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) -"bgw" = (/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) -"bgx" = (/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) -"bgy" = (/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) -"bgz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/research/station) -"bgA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/science/hallway) -"bgB" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/door/airlock/external{name = "Pod Airlock"; req_access_txt = "47"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bgC" = (/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},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bgD" = (/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{dir = 2; icon_state = "pipe-j2s"; sortType = 12},/turf/simulated/floor{dir = 4; icon_state = "whitepurple"},/area/science/hallway) -"bgE" = (/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},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bgF" = (/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) -"bgG" = (/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) -"bgH" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor,/area/science/lab) -"bgI" = (/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) -"bgJ" = (/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) -"bgK" = (/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) -"bgL" = (/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},/obj/item/weapon/storage/wallet/random{pixel_y = 3},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/lab) -"bgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bgN" = (/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) -"bgO" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 11},/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) -"bgP" = (/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) -"bgQ" = (/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) -"bgR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bgS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bgT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bgU" = (/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) -"bgV" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bgW" = (/obj/item/weapon/kitchen/utensil/fork,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bgY" = (/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) -"bgZ" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bha" = (/obj/structure/table/reinforced,/obj/machinery/pos{name = "Bar point of sale"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bhb" = (/obj/machinery/door/window{dir = 1; name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bhc" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/machinery/light/small{dir = 4},/obj/item/device/rcd/matter/rsf,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bhd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/cooking/still,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhg" = (/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) -"bhh" = (/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) -"bhi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 20},/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) -"bhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bhl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bhm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bhn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/maintenance/fsmaint) -"bho" = (/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) -"bhp" = (/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) -"bhq" = (/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) -"bhr" = (/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) -"bhs" = (/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) -"bht" = (/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) -"bhu" = (/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) -"bhv" = (/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) -"bhw" = (/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) -"bhx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bhy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/engineering/engine_storage) -"bhz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_storage) -"bhA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bhB" = (/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) -"bhC" = (/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) -"bhD" = (/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) -"bhE" = (/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) -"bhF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine) -"bhG" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine) -"bhH" = (/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) -"bhI" = (/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) -"bhJ" = (/turf/simulated/floor/carpet,/area/derelictparts/library) -"bhK" = (/obj/effect/decal/cleanable/generic,/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bhL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"bhM" = (/obj/item/weapon/cigbutt{pixel_x = 8; pixel_y = -3},/turf/simulated/floor/wood,/area/derelictparts/library) -"bhN" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bhO" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/library) -"bhP" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bhQ" = (/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) -"bhR" = (/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) -"bhS" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bhT" = (/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) -"bhU" = (/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) -"bhV" = (/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) -"bhW" = (/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) -"bhX" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhY" = (/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) -"bhZ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bia" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bib" = (/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) -"bic" = (/obj/item/device/radio/intercom{pixel_x = -27},/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/research/station) -"bid" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/docking_port/shuttle{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/research/station) -"bie" = (/obj/machinery/door/airlock/external{name = "Pod Airlock"; req_access_txt = "47"},/obj/structure/docking_port/destination/research/station{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bif" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"big" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"bih" = (/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) -"bii" = (/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) -"bij" = (/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) -"bik" = (/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) -"bil" = (/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) -"bim" = (/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) -"bin" = (/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) -"bio" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"bip" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/table,/obj/machinery/pos{name = "Chemistry point of sale"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"biq" = (/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) -"bir" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bis" = (/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bit" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"biu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"biv" = (/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) -"biw" = (/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) -"bix" = (/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) -"biy" = (/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) -"biz" = (/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) -"biA" = (/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) -"biB" = (/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) -"biC" = (/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) -"biD" = (/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},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"biE" = (/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) -"biF" = (/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) -"biG" = (/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) -"biH" = (/obj/machinery/processor,/obj/item/device/radio/intercom{pixel_y = -27},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"biI" = (/obj/machinery/cooking/candy,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"biJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"biK" = (/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) -"biL" = (/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fsmaint) -"biM" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"biN" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"biO" = (/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"biP" = (/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) -"biQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"biR" = (/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) -"biS" = (/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) -"biT" = (/obj/machinery/computer/station_alert,/turf/simulated/floor,/area/engineering/engine_storage) -"biU" = (/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) -"biV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"biW" = (/turf/simulated/floor,/area/engineering/engine_storage) -"biX" = (/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) -"biY" = (/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) -"biZ" = (/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) -"bja" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"bjb" = (/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) -"bjc" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/escape_pod5/station) -"bjd" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod5/station) -"bje" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/library) -"bjf" = (/obj/structure/filingcabinet,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bjg" = (/obj/machinery/alarm{dir = 4; pixel_x = -25},/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/library) -"bjh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/library) -"bji" = (/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/library) -"bjj" = (/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) -"bjk" = (/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) -"bjl" = (/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) -"bjm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjn" = (/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) -"bjo" = (/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) -"bjp" = (/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) -"bjq" = (/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) -"bjr" = (/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) -"bjs" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjt" = (/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) -"bju" = (/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bjv" = (/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) -"bjw" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"bjx" = (/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) -"bjy" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bjz" = (/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) -"bjA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/science/hallway) -"bjB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/window/reinforced,/obj/machinery/computer/shuttle_control/research,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bjC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bjD" = (/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) -"bjE" = (/turf/simulated/wall,/area/science/lab) -"bjF" = (/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) -"bjG" = (/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bjH" = (/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) -"bjI" = (/turf/simulated/floor{icon_state = "whitepurple"},/area/science/lab) -"bjJ" = (/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) -"bjK" = (/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) -"bjL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bjM" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bjN" = (/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) -"bjO" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjP" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjQ" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjR" = (/obj/structure/noticeboard{pixel_y = -27},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjS" = (/obj/machinery/firealarm{dir = 1; pixel_y = -27},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjT" = (/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) -"bjU" = (/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) -"bjV" = (/obj/structure/table,/obj/item/weapon/kitchen/utensil/fork,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bjW" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fsmaint) -"bjX" = (/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) -"bjY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bjZ" = (/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) -"bka" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkb" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/minihoe,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib3"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bke" = (/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) -"bkf" = (/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) -"bkg" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkh" = (/obj/machinery/light/small{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bki" = (/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) -"bkj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkk" = (/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) -"bkl" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkm" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bko" = (/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bkp" = (/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) -"bkq" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bkr" = (/obj/machinery/door/airlock/external{name = "Engineering Escape Pod"; req_access = null; req_access_txt = "0"},/turf/simulated/floor/plating,/area/engineering/engine) -"bks" = (/turf/simulated/floor/plating,/area/engineering/engine) -"bkt" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station) -"bku" = (/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) -"bkv" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station) -"bkw" = (/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) -"bkx" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/derelictparts/library) -"bky" = (/obj/item/weapon/cigbutt{pixel_x = -8; pixel_y = 14},/turf/simulated/floor/wood,/area/derelictparts/library) -"bkz" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bkA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood{icon_state = "wood-broken2"},/area/derelictparts/library) -"bkB" = (/obj/effect/decal/cleanable/ash,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bkC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/library) -"bkD" = (/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) -"bkE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/science/xenobiology) -"bkF" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bkG" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bkH" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bkI" = (/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) -"bkJ" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bkK" = (/obj/machinery/light/small{dir = 1},/obj/structure/toilet{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"bkL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"bkM" = (/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) -"bkN" = (/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) -"bkO" = (/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) -"bkP" = (/turf/simulated/shuttle/wall{icon_state = "swall_s5"},/area/shuttle/research/station) -"bkQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/propulsion{dir = 1},/turf/simulated/floor/plating,/area/shuttle/research/station) -"bkR" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/research/station) -"bkS" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/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) -"bkT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 14},/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/science/hallway) -"bkU" = (/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) -"bkV" = (/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) -"bkW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"bkX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/medbay) -"bkY" = (/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},/turf/simulated/floor/plating,/area/science/lab) -"bkZ" = (/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) -"bla" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blb" = (/obj/machinery/chem_dispenser/mapping,/turf/simulated/floor{icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) -"blc" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/chemistry) -"bld" = (/obj/machinery/chem_master,/turf/simulated/floor{dir = 6; icon_state = "whiteyellow"},/area/medical/chemistry) -"ble" = (/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) -"blf" = (/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) -"blg" = (/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) -"blh" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bli" = (/turf/simulated/floor,/area/hallway/primary/central) -"blj" = (/turf/simulated/wall,/area/supply/miningdelivery) -"blk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/supply/miningdelivery) -"bll" = (/turf/simulated/wall,/area/supply/qm) -"blm" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bln" = (/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) -"blo" = (/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) -"blp" = (/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) -"blq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"blr" = (/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) -"bls" = (/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) -"blt" = (/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) -"blu" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"blv" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"blw" = (/obj/item/trash/candy,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"blx" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bly" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/maintenance/fsmaint) -"blz" = (/obj/effect/decal/remains/robot,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"blA" = (/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) -"blB" = (/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"blC" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"blD" = (/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) -"blE" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"blF" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"blG" = (/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) -"blH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/engineering/engine) -"blI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/engineering/engine) -"blJ" = (/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) -"blK" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod"; dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"blL" = (/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) -"blM" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/escape_pod5/station) -"blN" = (/obj/structure/table/woodentable,/obj/machinery/computer/library/checkout,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/derelictparts/library) -"blO" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/derelictparts/library) -"blP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/library) -"blQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"blR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/carpet,/area/derelictparts/library) -"blS" = (/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) -"blT" = (/obj/item/weapon/newspaper,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"blU" = (/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) -"blV" = (/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) -"blW" = (/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) -"blX" = (/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) -"blY" = (/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) -"blZ" = (/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) -"bma" = (/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) -"bmb" = (/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) -"bmc" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bmd" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bme" = (/turf/simulated/wall,/area/science/robotics) -"bmf" = (/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) -"bmg" = (/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) -"bmh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "whitepurple"},/area/medical/genetics) -"bmi" = (/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) -"bmj" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor{icon_state = "whitepurple"},/area/medical/genetics) -"bmk" = (/turf/simulated/wall,/area/medical/genetics_cloning) -"bml" = (/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/hallway/primary/central) -"bmm" = (/turf/simulated/floor{icon_state = "purple"; dir = 5},/area/hallway/primary/central) -"bmn" = (/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) -"bmo" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/pos{name = "Chemistry point of sale"},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bmp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bmq" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"bmr" = (/obj/machinery/vending/mining,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/supply/miningdelivery) -"bms" = (/obj/machinery/requests_console{department = "Mining"; departmentType = 0; pixel_y = 30},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bmt" = (/obj/machinery/light{dir = 1},/obj/structure/closet/crate,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bmu" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/closet/crate,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bmv" = (/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) -"bmw" = (/obj/structure/ore_box,/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/supply/miningdelivery) -"bmx" = (/obj/structure/filingcabinet,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/supply/qm) -"bmy" = (/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) -"bmz" = (/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) -"bmA" = (/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) -"bmB" = (/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) -"bmC" = (/obj/machinery/computer/security/mining,/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/supply/qm) -"bmD" = (/obj/structure/kitchenspike,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmE" = (/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmF" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmH" = (/obj/machinery/gibber,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmI" = (/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fsmaint) -"bmJ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bmK" = (/obj/machinery/vending/cola,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint) -"bmL" = (/obj/item/weapon/stool,/obj/machinery/light_construct/small,/obj/item/weapon/circuitboard/seed_extractor,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmM" = (/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) -"bmN" = (/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) -"bmO" = (/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) -"bmP" = (/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) -"bmQ" = (/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) -"bmR" = (/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) -"bmS" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmT" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/crate/secure/large/reinforced/shard,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bmU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"bmV" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bmW" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/engineering/engine) -"bmX" = (/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) -"bmY" = (/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) -"bmZ" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/derelictparts/library) -"bna" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/derelictparts/library) -"bnb" = (/obj/structure/table/woodentable,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/plating,/area/derelictparts/library) -"bnc" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bnd" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/library) -"bne" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bnf" = (/turf/simulated/floor/carpet{icon_state = "carpet-broken"},/area/derelictparts/library) -"bng" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bnh" = (/obj/machinery/door/airlock/glass{name = "Derelict Library"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bni" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bnj" = (/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) -"bnk" = (/mob/living/carbon/slime,/turf/simulated/floor/engine,/area/science/xenobiology) -"bnl" = (/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) -"bnm" = (/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) -"bnn" = (/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) -"bno" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core North-West"; dir = 8; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bnp" = (/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) -"bnq" = (/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/turret_protected/ai_upload) -"bnr" = (/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bns" = (/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) -"bnt" = (/obj/structure/table,/obj/item/weapon/planning_frame,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bnu" = (/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},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bnv" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bnw" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bnx" = (/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bny" = (/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) -"bnz" = (/obj/machinery/recharge_station,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bnA" = (/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) -"bnB" = (/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) -"bnC" = (/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) -"bnD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"bnE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bnF" = (/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) -"bnG" = (/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) -"bnH" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bnI" = (/turf/simulated/wall/r_wall,/area/science/robotics) -"bnJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"bnK" = (/turf/simulated/floor{icon_state = "purplecorner"; dir = 4},/area/hallway/primary/central) -"bnL" = (/obj/machinery/light{dir = 1},/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/hallway/primary/central) -"bnM" = (/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) -"bnN" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{dir = 4; icon_state = "whitecorner"},/area/hallway/primary/central) -"bnO" = (/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/hallway/primary/central) -"bnP" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "whitecorner"},/area/hallway/primary/central) -"bnQ" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bnR" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/central) -"bnS" = (/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) -"bnT" = (/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) -"bnU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/central) -"bnV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/hallway/primary/central) -"bnW" = (/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/supply/miningdelivery) -"bnX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/supply/miningdelivery) -"bnY" = (/turf/simulated/floor,/area/supply/miningdelivery) -"bnZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/miningdelivery) -"boa" = (/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) -"bob" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/supply/qm) -"boc" = (/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) -"bod" = (/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) -"boe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/supply/qm) -"bof" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/supply/qm) -"bog" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/supply/qm) -"boh" = (/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) -"boi" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"boj" = (/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) -"bok" = (/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) -"bol" = (/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) -"bom" = (/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) -"bon" = (/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) -"boo" = (/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) -"bop" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"boq" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bor" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bos" = (/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) -"bot" = (/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,/turf/simulated/floor,/area/engineering/engine) -"bou" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/engineering/engine) -"bov" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine) -"bow" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/engineering/engine) -"box" = (/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/engineering/engine) -"boy" = (/turf/space,/area/shuttle/specops/station) -"boz" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/derelictparts/library) -"boA" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/library) -"boB" = (/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) -"boC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"boD" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"boE" = (/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) -"boF" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/derelictparts/library) -"boG" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/derelictparts/library) -"boH" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"boI" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"boJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"boK" = (/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) -"boL" = (/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) -"boM" = (/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) -"boN" = (/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) -"boO" = (/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) -"boP" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"boQ" = (/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) -"boR" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"boS" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"boT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"boU" = (/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) -"boV" = (/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) -"boW" = (/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) -"boX" = (/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) -"boY" = (/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) -"boZ" = (/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) -"bpa" = (/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) -"bpb" = (/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) -"bpc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/hallway/primary/fore) -"bpd" = (/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) -"bpe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/weapon/stool,/turf/simulated/floor,/area/science/lab) -"bpf" = (/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) -"bpg" = (/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bph" = (/obj/structure/table,/obj/machinery/pos{name = "Research point of sale"},/obj/machinery/door_control{id_tag = "rnd"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bpi" = (/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) -"bpj" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=ArrivalsL"; location = "CHTL"},/turf/simulated/floor,/area/hallway/primary/central) -"bpk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bpl" = (/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) -"bpm" = (/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) -"bpn" = (/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) -"bpo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bpp" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bpq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bpr" = (/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) -"bps" = (/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) -"bpt" = (/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) -"bpu" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bpv" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bpw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bpx" = (/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) -"bpy" = (/turf/simulated/wall,/area/supply/storage) -"bpz" = (/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) -"bpA" = (/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) -"bpB" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bpC" = (/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) -"bpD" = (/obj/structure/closet/wardrobe/grey,/obj/effect/decal/cleanable/cobweb2,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bpE" = (/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) -"bpF" = (/obj/machinery/portable_atmospherics/canister/plasma,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bpG" = (/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) -"bpH" = (/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) -"bpI" = (/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) -"bpJ" = (/turf/simulated/wall/r_wall,/area/security/vacantoffice) -"bpK" = (/turf/simulated/wall,/area/security/vacantoffice) -"bpL" = (/obj/structure/catwalk,/turf/space,/area/shuttle/specops/station) -"bpM" = (/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) -"bpN" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bpO" = (/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) -"bpP" = (/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) -"bpQ" = (/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) -"bpR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bpT" = (/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) -"bpU" = (/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) -"bpV" = (/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) -"bpW" = (/obj/structure/table,/obj/item/weapon/aiModule/core/asimov,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bpX" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bpY" = (/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) -"bpZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bqa" = (/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) -"bqb" = (/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) -"bqc" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "whitepurple"},/area/science/lab) -"bqd" = (/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) -"bqe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor{dir = 9; icon_state = "whitehall"},/area/science/hallway) -"bqf" = (/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) -"bqg" = (/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) -"bqh" = (/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) -"bqi" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/primary/central) -"bqj" = (/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) -"bqk" = (/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) -"bql" = (/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) -"bqm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/central) -"bqn" = (/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) -"bqo" = (/obj/structure/sign/map/efficiency,/turf/simulated/wall,/area/supply/miningdelivery) -"bqp" = (/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) -"bqq" = (/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) -"bqr" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqt" = (/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) -"bqu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_mining{name = "Mining Delivery"; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/miningdelivery) -"bqv" = (/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) -"bqw" = (/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,/turf/simulated/floor,/area/supply/qm) -"bqx" = (/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) -"bqy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/qm) -"bqz" = (/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) -"bqA" = (/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) -"bqB" = (/obj/structure/closet/secure_closet/cargotech,/turf/simulated/floor,/area/supply/storage) -"bqC" = (/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) -"bqD" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/camera{c_tag = "Cargo Bay North"},/turf/simulated/floor,/area/supply/storage) -"bqE" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor,/area/supply/storage) -"bqF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bqG" = (/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) -"bqH" = (/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) -"bqI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/storage) -"bqJ" = (/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) -"bqK" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bqL" = (/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) -"bqM" = (/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) -"bqN" = (/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) -"bqO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/security/vacantoffice) -"bqP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bqQ" = (/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) -"bqR" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bqS" = (/obj/machinery/field_generator,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bqT" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bqU" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bqV" = (/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) -"bqW" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bqX" = (/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) -"bqY" = (/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) -"bqZ" = (/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) -"bra" = (/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) -"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},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brc" = (/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) -"brd" = (/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) -"bre" = (/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) -"brf" = (/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) -"brg" = (/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) -"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/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) -"bri" = (/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) -"brj" = (/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) -"brk" = (/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) -"brl" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"brm" = (/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) -"brn" = (/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) -"bro" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"brp" = (/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) -"brq" = (/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) -"brr" = (/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_access_txt = "7"},/turf/simulated/floor/plating,/area/science/lab) -"brs" = (/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) -"brt" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bru" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor{icon_state = "whiteredcorner"},/area/science/robotics) -"brv" = (/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) -"brw" = (/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"brx" = (/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) -"bry" = (/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) -"brz" = (/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) -"brA" = (/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) -"brB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"brC" = (/turf/simulated/floor{icon_state = "browncorner"},/area/hallway/primary/central) -"brD" = (/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) -"brE" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/supply/storage) -"brF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"brG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/miningdelivery) -"brH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "browncorner"},/area/supply/storage) -"brI" = (/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) -"brJ" = (/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) -"brK" = (/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) -"brL" = (/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) -"brM" = (/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) -"brN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"brO" = (/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) -"brP" = (/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) -"brQ" = (/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) -"brR" = (/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) -"brS" = (/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) -"brT" = (/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) -"brU" = (/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) -"brV" = (/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) -"brW" = (/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) -"brX" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/turf/simulated/floor/plating,/area/supply/storage) -"brY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"brZ" = (/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) -"bsa" = (/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) -"bsb" = (/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) -"bsc" = (/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) -"bsd" = (/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) -"bse" = (/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) -"bsf" = (/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) -"bsg" = (/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) -"bsh" = (/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) -"bsi" = (/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) -"bsj" = (/obj/machinery/field_generator,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bsk" = (/turf/simulated/floor/plating,/area/security/vacantoffice) -"bsl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/asmaint2) -"bsm" = (/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) -"bsn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bso" = (/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) -"bsp" = (/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) -"bsq" = (/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) -"bsr" = (/obj/structure/table,/obj/item/weapon/aiModule/standard/protectStation,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bss" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bst" = (/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) -"bsu" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsw" = (/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/hallway/primary/central) -"bsx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bsy" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/sign/biohazard{pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bsz" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bsA" = (/obj/machinery/mineral/output,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/science/robotics) -"bsB" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bsC" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor{icon_state = "whitered"; dir = 4},/area/science/robotics) -"bsD" = (/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"},/turf/simulated/floor/plating,/area/science/robotics) -"bsE" = (/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) -"bsF" = (/turf/simulated/shuttle/wall{icon_state = "swall_s6"},/area/shuttle/mining/station) -"bsG" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/mining/station) -"bsH" = (/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) -"bsI" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/mining/station) -"bsJ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor,/area/hallway/primary/central) -"bsK" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"bsL" = (/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) -"bsM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bsN" = (/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) -"bsO" = (/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) -"bsP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/supply/storage) -"bsQ" = (/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) -"bsR" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bsS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bsT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/supply/storage) -"bsU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction{dir = 8; sortType = 3},/turf/simulated/floor,/area/supply/storage) -"bsV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bsW" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 3},/turf/simulated/floor,/area/supply/storage) -"bsX" = (/turf/simulated/floor,/area/supply/storage) -"bsY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bsZ" = (/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) -"bta" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"btb" = (/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) -"btc" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/supply/storage) -"btd" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/supply/storage) -"bte" = (/turf/simulated/floor/plating,/area/supply/storage) -"btf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bth" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bti" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"btj" = (/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) -"btk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/fsderelict) -"btl" = (/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) -"btm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btn" = (/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) -"bto" = (/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) -"btp" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"btq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"btr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bts" = (/turf/simulated/wall,/area/derelictparts/asderelict) -"btt" = (/obj/structure/rack,/obj/item/weapon/pen,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"btu" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btv" = (/obj/structure/table,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"btx" = (/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) -"bty" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btz" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"btA" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"btB" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btC" = (/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) -"btD" = (/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) -"btE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"btF" = (/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) -"btG" = (/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) -"btH" = (/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) -"btI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"btJ" = (/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) -"btK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"btL" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"btM" = (/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) -"btN" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"btO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"btP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"btQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"btR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"btS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"btT" = (/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) -"btU" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/structure/closet/firecloset/full,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"btV" = (/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/hallway/primary/central) -"btW" = (/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) -"btX" = (/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) -"btY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"btZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bua" = (/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) -"bub" = (/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) -"buc" = (/obj/machinery/door/airlock/research{id_tag = "ScienceFoyer"; name = "Research Division Access"; req_access_txt = "0"; req_one_access_txt = "16;47"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"bue" = (/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) -"buf" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/space,/area/shuttle/mining/station) -"bug" = (/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) -"buh" = (/obj/structure/table,/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bui" = (/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"buj" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"buk" = (/turf/simulated/shuttle/wall{icon_state = "swall3"},/area/shuttle/mining/station) -"bul" = (/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) -"bum" = (/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) -"bun" = (/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/supply/storage) -"buo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/supply/storage) -"bup" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/supply/storage) -"buq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/supply/storage) -"bur" = (/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) -"bus" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"but" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"buu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/supply/storage) -"buv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"buw" = (/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) -"bux" = (/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) -"buy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/supply/storage) -"buz" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/supply/storage) -"buA" = (/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"buB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/supply/storage) -"buC" = (/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) -"buD" = (/turf/simulated/wall,/area/derelictparts/fsderelict) -"buE" = (/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) -"buF" = (/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) -"buG" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"buH" = (/obj/item/weapon/camera_assembly,/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"buI" = (/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) -"buJ" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"buK" = (/obj/item/weapon/caution/cone,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"buL" = (/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) -"buM" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"buN" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1; initialize_directions = 0; level = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"buO" = (/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) -"buP" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/security/vacantoffice) -"buQ" = (/obj/structure/closet,/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"buR" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"buS" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"buT" = (/obj/structure/rack,/obj/item/weapon/spacecash,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"buU" = (/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) -"buV" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"buW" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"buX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/xenobiology) -"buY" = (/obj/structure/table,/obj/item/weapon/aiModule/standard/quarantine,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"buZ" = (/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) -"bva" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvc" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bvd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bve" = (/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) -"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bvg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bvh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bvi" = (/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) -"bvj" = (/turf/simulated/floor{icon_state = "whitehall"},/area/science/robotics) -"bvk" = (/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) -"bvl" = (/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) -"bvm" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"bvn" = (/obj/machinery/computer/shuttle_control/mining,/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bvo" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/docking_port/shuttle{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/mining/station) -"bvp" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/obj/structure/docking_port/destination/mining/station{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvq" = (/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvr" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/hallway/primary/central) -"bvt" = (/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) -"bvu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bvv" = (/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) -"bvw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/supply/storage) -"bvx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bvy" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor,/area/supply/storage) -"bvz" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/supply/storage) -"bvA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/supply/storage) -"bvB" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/supply/storage) -"bvC" = (/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) -"bvD" = (/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) -"bvE" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvF" = (/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) -"bvG" = (/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) -"bvH" = (/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) -"bvI" = (/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) -"bvJ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/device/multitool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bvK" = (/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) -"bvL" = (/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/fsderelict) -"bvM" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvN" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvO" = (/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) -"bvP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/derelictparts/fsderelict) -"bvQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/vacantoffice) -"bvR" = (/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) -"bvS" = (/obj/machinery/particle_accelerator/control_box{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bvT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bvU" = (/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) -"bvV" = (/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) -"bvW" = (/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) -"bvX" = (/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) -"bvY" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bvZ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwa" = (/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) -"bwb" = (/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) -"bwc" = (/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) -"bwd" = (/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) -"bwe" = (/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) -"bwf" = (/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) -"bwg" = (/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) -"bwh" = (/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) -"bwi" = (/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) -"bwj" = (/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) -"bwk" = (/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) -"bwl" = (/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) -"bwm" = (/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) -"bwn" = (/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) -"bwo" = (/turf/simulated/wall/r_wall,/area/derelictparts/asderelict) -"bwp" = (/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) -"bwq" = (/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) -"bwr" = (/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) -"bws" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwt" = (/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) -"bwu" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwv" = (/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) -"bww" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwx" = (/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) -"bwy" = (/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) -"bwz" = (/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) -"bwA" = (/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) -"bwB" = (/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) -"bwC" = (/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) -"bwD" = (/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"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bwE" = (/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) -"bwF" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bwG" = (/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) -"bwH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bwI" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bwJ" = (/obj/structure/ore_box,/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bwK" = (/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) -"bwL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bwM" = (/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) -"bwN" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor,/area/supply/storage) -"bwO" = (/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) -"bwP" = (/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) -"bwQ" = (/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) -"bwR" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwS" = (/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwT" = (/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) -"bwU" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwV" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwW" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bwX" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwY" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bwZ" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bxa" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bxb" = (/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) -"bxc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxe" = (/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) -"bxf" = (/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) -"bxg" = (/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) -"bxh" = (/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) -"bxi" = (/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) -"bxj" = (/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) -"bxk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxn" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxq" = (/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) -"bxr" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxs" = (/obj/machinery/turret,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/airless{icon_state = "circuit"},/area/turret_protected/ai) -"bxt" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxu" = (/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) -"bxv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bxy" = (/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) -"bxz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bxA" = (/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) -"bxB" = (/turf/simulated/wall/r_wall,/area/science/chargebay) -"bxC" = (/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) -"bxD" = (/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) -"bxE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bxF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxG" = (/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) -"bxH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxI" = (/turf/simulated/shuttle/wall{icon_state = "swall_s5"},/area/shuttle/mining/station) -"bxJ" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/mining/station) -"bxK" = (/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) -"bxL" = (/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) -"bxM" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"bxN" = (/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/hallway/primary/central) -"bxO" = (/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) -"bxP" = (/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) -"bxQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bxR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/supply/storage) -"bxS" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/pos{name = "Cargo point of sale"},/turf/simulated/floor,/area/supply/storage) -"bxT" = (/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) -"bxU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bxV" = (/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) -"bxW" = (/obj/machinery/r_n_d/fabricator/mechanic_fab/autolathe,/turf/simulated/floor,/area/supply/storage) -"bxX" = (/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) -"bxY" = (/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) -"bxZ" = (/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) -"bya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byb" = (/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) -"byc" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/trash/plate,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byd" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bye" = (/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) -"byf" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byg" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"byh" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"byi" = (/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) -"byj" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byk" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byl" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bym" = (/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) -"byn" = (/obj/structure/particle_accelerator/particle_emitter/right,/obj/machinery/light,/turf/simulated/floor/plating,/area/security/vacantoffice) -"byo" = (/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) -"byp" = (/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) -"byq" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byr" = (/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bys" = (/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) -"byt" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byu" = (/obj/item/weapon/lighter/random,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byv" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"byw" = (/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) -"byx" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"byy" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/remains/robot{icon_state = "gib5"},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"byz" = (/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) -"byA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byB" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1; initialize_directions = 0; level = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byC" = (/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) -"byD" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byE" = (/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) -"byF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"byG" = (/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) -"byH" = (/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) -"byI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"byJ" = (/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) -"byK" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"byL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whiteblue"},/area/science/robotics) -"byM" = (/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) -"byN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"byO" = (/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) -"byP" = (/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},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"byQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"byR" = (/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"byS" = (/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) -"byT" = (/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) -"byU" = (/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) -"byV" = (/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) -"byW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/merch,/turf/simulated/floor,/area/supply/storage) -"byX" = (/obj/machinery/computer/ordercomp,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor,/area/supply/storage) -"byY" = (/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) -"byZ" = (/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) -"bza" = (/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) -"bzb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bzc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bzd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/supply/storage) -"bze" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (WEST)"; icon_state = "loading_area"; dir = 8},/turf/simulated/floor,/area/supply/storage) -"bzf" = (/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) -"bzg" = (/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) -"bzh" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad2"},/turf/simulated/floor/plating,/area/supply/storage) -"bzi" = (/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) -"bzj" = (/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) -"bzk" = (/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) -"bzl" = (/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) -"bzm" = (/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) -"bzn" = (/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) -"bzo" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzp" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bzq" = (/obj/effect/decal/cleanable/generic,/mob/living/carbon/monkey,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzr" = (/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzs" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bzt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzu" = (/obj/item/device/radio,/obj/item/device/flashlight,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bzv" = (/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) -"bzw" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bzx" = (/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) -"bzy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/asderelict) -"bzz" = (/obj/structure/table,/obj/map/spawner/maint,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bzA" = (/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) -"bzB" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bzC" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bzD" = (/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) -"bzE" = (/obj/item/weapon/cigbutt,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzF" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzG" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bzJ" = (/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) -"bzK" = (/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) -"bzL" = (/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) -"bzM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/robotics) -"bzN" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzO" = (/obj/structure/table,/obj/item/device/aicard,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzQ" = (/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) -"bzR" = (/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},/turf/simulated/floor{icon_state = "whitebluecorner"; dir = 1},/area/science/robotics) -"bzS" = (/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) -"bzT" = (/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) -"bzU" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bzV" = (/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) -"bzW" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/science/robotics) -"bzX" = (/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) -"bzY" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"bzZ" = (/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) -"bAa" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/hallway/primary/central) -"bAb" = (/turf/simulated/wall,/area/maintenance/apmaint) -"bAc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/apmaint) -"bAd" = (/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) -"bAe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/apmaint) -"bAf" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor,/area/supply/storage) -"bAg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/photocopier,/turf/simulated/floor{icon_state = "browncorner"},/area/supply/storage) -"bAh" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/storage) -"bAi" = (/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) -"bAj" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bAk" = (/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) -"bAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/poster{icon_state = "poster10"; pixel_y = -32},/turf/simulated/floor,/area/supply/storage) -"bAm" = (/obj/machinery/camera{c_tag = "Cargo Bay South"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -27},/turf/simulated/floor,/area/supply/storage) -"bAn" = (/obj/machinery/light,/turf/simulated/floor,/area/supply/storage) -"bAo" = (/obj/machinery/status_display{pixel_y = -30; supply_display = 1},/turf/simulated/floor,/area/supply/storage) -"bAp" = (/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) -"bAq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bAr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bAs" = (/obj/item/weapon/cautery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAt" = (/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) -"bAu" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAv" = (/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) -"bAw" = (/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) -"bAx" = (/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) -"bAy" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAz" = (/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAA" = (/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bAB" = (/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) -"bAC" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area) -"bAD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/asderelict) -"bAE" = (/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) -"bAF" = (/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) -"bAG" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bAH" = (/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) -"bAI" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/asderelict) -"bAJ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bAK" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/obj/item/weapon/screwdriver,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bAL" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bAM" = (/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) -"bAN" = (/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) -"bAO" = (/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) -"bAP" = (/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) -"bAQ" = (/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) -"bAR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAS" = (/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) -"bAT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bAU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bAV" = (/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) -"bAW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/science/robotics) -"bAX" = (/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) -"bAY" = (/turf/simulated/floor,/area/science/robotics) -"bAZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/science/chargebay) -"bBa" = (/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) -"bBb" = (/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) -"bBc" = (/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) -"bBd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bBe" = (/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) -"bBf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHTL"; location = "CHBL"},/turf/simulated/floor,/area/hallway/primary/central) -"bBg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoPR"; location = "CHBR"},/turf/simulated/floor,/area/hallway/primary/central) -"bBh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bBi" = (/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) -"bBj" = (/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) -"bBk" = (/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) -"bBl" = (/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) -"bBm" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/turf/simulated/floor,/area/supply/storage) -"bBn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/supply/storage) -"bBo" = (/obj/machinery/door/poddoor/shutters{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) -"bBp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/supply/storage) -"bBq" = (/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) -"bBr" = (/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) -"bBs" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bBt" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBu" = (/obj/item/device/assembly/signaler{pixel_x = 7; pixel_y = -4},/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBv" = (/obj/item/weapon/broken_bottle,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bBw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bBx" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBy" = (/obj/item/weapon/cigbutt,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBz" = (/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) -"bBA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBB" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bBC" = (/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) -"bBD" = (/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) -"bBE" = (/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) -"bBF" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBG" = (/obj/structure/closet,/obj/item/weapon/circuitboard/telecomms/hub,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBH" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBI" = (/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) -"bBJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBK" = (/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bBL" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBM" = (/obj/item/trash/sosjerky,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bBN" = (/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) -"bBO" = (/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) -"bBP" = (/obj/item/weapon/stock_parts/scanning_module{pixel_x = -10; pixel_y = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bBQ" = (/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) -"bBR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bBS" = (/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) -"bBT" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bBU" = (/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) -"bBV" = (/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) -"bBW" = (/turf/simulated/floor,/area/science/chargebay) -"bBX" = (/obj/machinery/mech_bay_recharge_port,/turf/simulated/floor/plating,/area/science/chargebay) -"bBY" = (/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) -"bBZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"bCa" = (/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) -"bCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/hallway/primary/central) -"bCc" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/hallway/primary/central) -"bCd" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; pixel_y = -23},/turf/simulated/floor,/area/hallway/primary/central) -"bCe" = (/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) -"bCf" = (/obj/machinery/status_display{layer = 4; pixel_y = -32},/obj/machinery/vending/groans,/turf/simulated/floor{icon_state = "dark"},/area/hallway/primary/central) -"bCg" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/hallway/primary/central) -"bCh" = (/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) -"bCi" = (/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) -"bCj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/supply/storage) -"bCl" = (/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) -"bCm" = (/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) -"bCn" = (/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) -"bCo" = (/obj/structure/table,/obj/item/weapon/wrapping_paper{pixel_y = 7},/obj/item/weapon/wrapping_paper{pixel_y = 7},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/turf/simulated/floor,/area/supply/storage) -"bCp" = (/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) -"bCq" = (/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) -"bCr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCs" = (/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) -"bCt" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCu" = (/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) -"bCv" = (/obj/item/device/t_scanner,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCw" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCx" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCy" = (/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) -"bCz" = (/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bCA" = (/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) -"bCB" = (/obj/item/weapon/lighter/random,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCD" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCE" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bCF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/filingcabinet,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCG" = (/obj/item/seeds/deathnettleseed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bCH" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bCJ" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bCK" = (/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bCL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bCM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bCN" = (/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) -"bCO" = (/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) -"bCP" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bCQ" = (/obj/item/trash/candy,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bCR" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bCS" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bCT" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/reagent_containers/spray,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bCU" = (/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) -"bCV" = (/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) -"bCW" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core West"; dir = 8; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bCX" = (/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) -"bCY" = (/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) -"bCZ" = (/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) -"bDa" = (/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bDc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/science/robotics) -"bDd" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor,/area/science/robotics) -"bDe" = (/turf/simulated/wall,/area/maintenance/port) -"bDf" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bDg" = (/obj/structure/window/reinforced/tinted{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bDh" = (/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) -"bDi" = (/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) -"bDj" = (/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) -"bDk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDl" = (/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) -"bDm" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDn" = (/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) -"bDo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/supply/storage) -"bDp" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bDq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bDr" = (/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) -"bDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/supply/storage) -"bDt" = (/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) -"bDu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDv" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDx" = (/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDy" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDz" = (/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) -"bDA" = (/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) -"bDB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/derelictparts/fsderelict) -"bDC" = (/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) -"bDD" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bDE" = (/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) -"bDF" = (/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) -"bDG" = (/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) -"bDH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bDI" = (/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bDJ" = (/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) -"bDK" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bDL" = (/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) -"bDM" = (/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) -"bDN" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bDO" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bDP" = (/obj/machinery/light/small,/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bDQ" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bDR" = (/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) -"bDS" = (/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) -"bDT" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDU" = (/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) -"bDV" = (/turf/simulated/wall/r_wall,/area/maintenance/port) -"bDW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/chargebay) -"bDX" = (/obj/machinery/computer/rdconsole/robotics,/obj/structure/closet/hydrant{pixel_x = 32},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bDY" = (/turf/simulated/floor{icon_state = "purple"},/area/hallway/primary/central) -"bDZ" = (/turf/simulated/floor{dir = 10; icon_state = "purple"},/area/hallway/primary/central) -"bEa" = (/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) -"bEb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "purple"},/area/hallway/primary/central) -"bEc" = (/obj/machinery/camera{c_tag = "Central Hall South West"; dir = 1},/turf/simulated/floor{dir = 8; icon_state = "purplecorner"},/area/hallway/primary/central) -"bEd" = (/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) -"bEe" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/central) -"bEf" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/central) -"bEg" = (/obj/structure/table,/turf/simulated/floor{icon_state = "arrival"; dir = 1},/area/maintenance/apmaint) -"bEh" = (/obj/machinery/requests_console{department = "Store 2"; departmentType = 2; pixel_x = -32; pixel_y = 30},/turf/simulated/floor,/area/maintenance/apmaint) -"bEi" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bEj" = (/obj/machinery/door_control{id_tag = "shop2"; name = "Privacy Shutters"; pixel_x = 25},/turf/simulated/floor,/area/maintenance/apmaint) -"bEk" = (/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) -"bEl" = (/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) -"bEm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEn" = (/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) -"bEo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEp" = (/obj/machinery/conveyor_switch/oneway{id_tag = "packageSort2"},/turf/simulated/floor,/area/supply/storage) -"bEq" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/supply/storage) -"bEr" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/supply/storage) -"bEs" = (/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) -"bEt" = (/obj/structure/closet/crate/internals,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEu" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEv" = (/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) -"bEw" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEx" = (/turf/simulated/wall,/area/maintenance/disposal) -"bEy" = (/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) -"bEz" = (/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) -"bEA" = (/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) -"bEB" = (/obj/machinery/door/airlock/hatch{req_access_txt = "16"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEC" = (/obj/machinery/camera{c_tag = "MoMMI nest airlock"; dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bED" = (/obj/effect/decal/warning_stripes{icon_state = "no"},/obj/effect/decal/warning_stripes{icon_state = "air"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEE" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEH" = (/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) -"bEI" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/generic,/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEJ" = (/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) -"bEK" = (/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) -"bEL" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bEM" = (/obj/item/weapon/cigbutt,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/asderelict) -"bEN" = (/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) -"bEO" = (/obj/structure/closet/emcloset,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEP" = (/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) -"bEQ" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bER" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bES" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core East"; dir = 4; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bET" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/port) -"bEU" = (/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) -"bEV" = (/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) -"bEW" = (/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) -"bEX" = (/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) -"bEY" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bEZ" = (/obj/structure/closet/wardrobe/robotics_black,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bFa" = (/turf/simulated/floor/plating,/area/maintenance/port) -"bFb" = (/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) -"bFc" = (/obj/machinery/door/poddoor/shutters{dir = 2; id_tag = "Skynet_launch"; name = "Mech Bay"},/turf/simulated/floor,/area/science/chargebay) -"bFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/robotics) -"bFe" = (/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"},/turf/simulated/floor,/area/science/chargebay) -"bFf" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bFg" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/port) -"bFh" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bFi" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/science/chargebay) -"bFj" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/maintenance/apmaint) -"bFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bFl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/maintenance/apmaint) -"bFm" = (/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) -"bFn" = (/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) -"bFo" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFp" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bFq" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/supply/storage) -"bFr" = (/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) -"bFs" = (/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) -"bFt" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/structure/window/reinforced{dir = 1},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/supply/storage) -"bFu" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating,/area/supply/storage) -"bFv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFw" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFx" = (/obj/structure/closet/crate,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFy" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFz" = (/obj/machinery/conveyor{dir = 5; id_tag = "garbage"},/turf/simulated/floor,/area/maintenance/disposal) -"bFA" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bFB" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/turf/simulated/floor,/area/maintenance/disposal) -"bFC" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/obj/machinery/camera{c_tag = "Disposals"},/turf/simulated/floor,/area/maintenance/disposal) -"bFD" = (/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{dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bFE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4; throw_range = 1; throw_speed = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bFF" = (/obj/machinery/mass_driver{dir = 4; id_tag = "trash"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bFG" = (/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) -"bFH" = (/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) -"bFI" = (/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) -"bFJ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bFK" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bFL" = (/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) -"bFM" = (/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) -"bFN" = (/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) -"bFO" = (/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bFP" = (/obj/structure/table,/obj/item/weapon/coin/silver,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bFQ" = (/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) -"bFR" = (/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) -"bFS" = (/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) -"bFT" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bFU" = (/turf/simulated/wall/r_wall,/area/derelictparts/port) -"bFV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bFW" = (/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) -"bFX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bFY" = (/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) -"bFZ" = (/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) -"bGa" = (/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) -"bGb" = (/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) -"bGc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/science/chargebay) -"bGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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/machinery/conveyor{dir = 4; id_tag = "garbage"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bGw" = (/obj/machinery/mineral/stacking_machine{id_tag = "recycling_stacker"; in_dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bGx" = (/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/maintenance/disposal) -"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) -"bGA" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bGB" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGC" = (/obj/machinery/light/small,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGD" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bGE" = (/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) -"bGF" = (/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) -"bGG" = (/obj/machinery/door/airlock{name = "Unit 5"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bGH" = (/obj/structure/grille/broken,/obj/item/stack/rods,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGI" = (/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) -"bGJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/chargebay) -"bGK" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/science/chargebay) -"bGL" = (/turf/simulated/wall,/area/derelictparts/port) -"bGM" = (/obj/machinery/turret{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bGN" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bGO" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bGP" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/maintenance/port) -"bGQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille/broken,/obj/item/stack/sheet/metal,/turf/simulated/floor/plating,/area/maintenance/port) -"bGR" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/science/chargebay) -"bGS" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor,/area/maintenance/apmaint) -"bGT" = (/obj/structure/rack,/obj/item/device/assembly/signaler,/turf/simulated/floor/plating,/area/maintenance/port) -"bGU" = (/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) -"bGV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/chargebay) -"bGW" = (/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) -"bGX" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor,/area/science/chargebay) -"bGY" = (/obj/machinery/mech_bay_recharge_floor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/science/chargebay) -"bGZ" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bHa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/hallway/primary/port) -"bHb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bHc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) -"bHd" = (/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) -"bHe" = (/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) -"bHf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bHg" = (/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) -"bHh" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/apmaint) -"bHj" = (/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) -"bHk" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHl" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHm" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHn" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHo" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHp" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/apmaint) -"bHq" = (/obj/structure/rack,/obj/item/device/flashlight,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHr" = (/obj/machinery/sorting_machine/recycling{filter_dir = 4; input_dir = 2; output_dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bHs" = (/obj/machinery/conveyor{dir = 1; id_tag = "garbage"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bHt" = (/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) -"bHu" = (/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) -"bHv" = (/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) -"bHw" = (/obj/machinery/conveyor{dir = 1; id_tag = "garbage"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/maintenance/disposal) -"bHx" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/disposal) -"bHy" = (/obj/machinery/door/window{dir = 1; req_access_txt = "30"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bHz" = (/obj/machinery/computer/rdconsole/mommi,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bHA" = (/obj/machinery/r_n_d/fabricator/protolathe,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bHB" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bHC" = (/obj/structure/window/reinforced/plasma{dir = 1},/obj/machinery/media/jukebox/bar,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bHD" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bHE" = (/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) -"bHF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/science/chargebay) -"bHG" = (/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) -"bHH" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bHI" = (/obj/effect/decal/cleanable/vomit,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bHJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/r_wall,/area/derelictparts/port) -"bHK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/mech_bay_recharge_floor,/turf/simulated/floor,/area/science/chargebay) -"bHL" = (/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) -"bHM" = (/obj/item/weapon/stool,/obj/machinery/light/small{dir = 8},/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating,/area/maintenance/port) -"bHN" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bHO" = (/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) -"bHP" = (/obj/effect/decal/cleanable/generic,/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bHQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/port) -"bHR" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bHS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall,/area/maintenance/apmaint) -"bHT" = (/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) -"bHU" = (/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) -"bHV" = (/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) -"bHW" = (/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) -"bHX" = (/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) -"bHY" = (/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) -"bHZ" = (/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) -"bIa" = (/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) -"bIb" = (/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) -"bIc" = (/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) -"bId" = (/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) -"bIe" = (/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) -"bIf" = (/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) -"bIg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) -"bIh" = (/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) -"bIi" = (/turf/simulated/floor,/area/maintenance/disposal) -"bIj" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bIk" = (/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) -"bIl" = (/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) -"bIm" = (/turf/simulated/wall,/area/derelictparts/apderelict) -"bIn" = (/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) -"bIo" = (/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) -"bIp" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bIq" = (/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) -"bIr" = (/obj/machinery/camera{c_tag = "MoMMI nest south"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bIs" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bIt" = (/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) -"bIu" = (/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) -"bIv" = (/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) -"bIw" = (/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) -"bIx" = (/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) -"bIy" = (/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) -"bIz" = (/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) -"bIA" = (/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) -"bIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bIC" = (/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) -"bID" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bIE" = (/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) -"bIF" = (/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) -"bIG" = (/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) -"bIH" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bII" = (/obj/machinery/turret{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/airless{icon_state = "circuit"},/area/turret_protected/ai) -"bIJ" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core South"; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bIK" = (/obj/machinery/space_heater,/obj/item/weapon/circuitboard/telecomms/server,/turf/simulated/floor/plating,/area/maintenance/port) -"bIL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bIM" = (/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) -"bIN" = (/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) -"bIO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/port) -"bIP" = (/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) -"bIQ" = (/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) -"bIR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/chargebay) -"bIS" = (/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) -"bIT" = (/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) -"bIU" = (/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) -"bIV" = (/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) -"bIW" = (/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) -"bIX" = (/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) -"bIY" = (/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) -"bIZ" = (/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) -"bJa" = (/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) -"bJb" = (/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) -"bJc" = (/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) -"bJd" = (/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) -"bJe" = (/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) -"bJf" = (/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) -"bJg" = (/turf/simulated/wall,/area/crew_quarters/fitness) -"bJh" = (/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) -"bJi" = (/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) -"bJj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 1},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJk" = (/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) -"bJl" = (/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) -"bJm" = (/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) -"bJn" = (/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) -"bJo" = (/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) -"bJp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) -"bJq" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/wall,/area/maintenance/disposal) -"bJr" = (/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) -"bJs" = (/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) -"bJt" = (/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) -"bJu" = (/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) -"bJv" = (/obj/item/stack/rods,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bJw" = (/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) -"bJx" = (/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) -"bJy" = (/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) -"bJz" = (/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) -"bJA" = (/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) -"bJB" = (/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) -"bJC" = (/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) -"bJD" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bJE" = (/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bJF" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bJG" = (/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) -"bJH" = (/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) -"bJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bJJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bJK" = (/obj/item/stack/sheet/metal{amount = 23},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bJL" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bJM" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bJN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bJO" = (/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) -"bJP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bJQ" = (/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) -"bJR" = (/turf/simulated/wall,/area/crew_quarters/theatre) -"bJS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/theatre) -"bJT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light,/turf/simulated/floor,/area/science/chargebay) -"bJU" = (/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/maintenance/port) -"bJV" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/port) -"bJW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bJX" = (/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) -"bJY" = (/obj/machinery/washing_machine,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bJZ" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bKa" = (/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) -"bKb" = (/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) -"bKc" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKd" = (/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKe" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKg" = (/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bKi" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bKj" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/mounted/poster,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bKk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/device/flashlight/flare,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKm" = (/obj/item/trash/plate,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKn" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKo" = (/turf/simulated/wall/r_wall,/area/solar/fstarboard) -"bKp" = (/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/solar/fstarboard) -"bKq" = (/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) -"bKr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bKs" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bKt" = (/obj/machinery/vending/assist,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/asderelict) -"bKu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bKv" = (/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) -"bKw" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bKx" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bKy" = (/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bKz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Mech Bay"; dir = 1},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bKA" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/wall,/area/derelictparts/asderelict) -"bKB" = (/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) -"bKC" = (/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) -"bKD" = (/turf/simulated/wall/r_wall,/area/derelictparts/diner) -"bKE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/r_wall,/area/derelictparts/diner) -"bKF" = (/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) -"bKG" = (/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) -"bKH" = (/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) -"bKI" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bKJ" = (/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) -"bKK" = (/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) -"bKL" = (/obj/machinery/camera{c_tag = "Theatre Storage"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bKM" = (/obj/structure/rack,/obj/map/spawner/set_spawner/theater,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bKN" = (/obj/structure/mirror{pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bKO" = (/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) -"bKP" = (/turf/simulated/wall,/area/crew_quarters/sleep) -"bKQ" = (/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) -"bKR" = (/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) -"bKS" = (/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) -"bKT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 9},/area/crew_quarters/sleep) -"bKU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"; dir = 5},/area/crew_quarters/sleep) -"bKV" = (/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) -"bKW" = (/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) -"bKX" = (/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bKY" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKZ" = (/obj/structure/closet/crate/medical,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLa" = (/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) -"bLb" = (/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) -"bLc" = (/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) -"bLd" = (/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) -"bLe" = (/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) -"bLf" = (/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) -"bLg" = (/obj/item/toy/katana,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLh" = (/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) -"bLi" = (/obj/item/weapon/stool,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLj" = (/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) -"bLk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bLm" = (/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) -"bLn" = (/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) -"bLo" = (/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) -"bLp" = (/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) -"bLq" = (/obj/machinery/power/battery/smes{charge = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/solar/fstarboard) -"bLr" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/plating,/area/solar/fstarboard) -"bLs" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bLt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/solar/fstarboard) -"bLu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/solar/fstarboard) -"bLv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/solar/fstarboard) -"bLw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bLx" = (/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) -"bLy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bLz" = (/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bLA" = (/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) -"bLB" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bLC" = (/obj/structure/rack,/obj/item/weapon/tank/air,/obj/map/spawner/maint,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/asderelict) -"bLD" = (/obj/structure/table,/obj/item/trash/candle,/obj/item/stack/medical/ointment,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bLE" = (/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) -"bLF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bLG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bLH" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bLI" = (/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) -"bLJ" = (/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bLK" = (/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) -"bLL" = (/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) -"bLM" = (/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) -"bLN" = (/turf/simulated/wall,/area/derelictparts/diner) -"bLO" = (/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) -"bLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bLQ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bLR" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bLS" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bLT" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bLU" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bLV" = (/obj/structure/grille,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bLW" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bLX" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/derelictparts/port) -"bLY" = (/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) -"bLZ" = (/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) -"bMa" = (/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) -"bMb" = (/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) -"bMc" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMe" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMf" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMh" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bMi" = (/obj/structure/table,/turf/simulated/floor,/area/hallway/primary/port) -"bMj" = (/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/port) -"bMk" = (/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) -"bMl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMn" = (/obj/machinery/door/airlock{id_tag = "RDorm5"; name = "Dorm 5"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bMo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bMp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bMq" = (/obj/machinery/door/airlock{id_tag = "RDorm6"; name = "Dorm 6"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bMr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMs" = (/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) -"bMt" = (/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) -"bMu" = (/obj/structure/window/reinforced,/obj/structure/table,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bMv" = (/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) -"bMw" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bMx" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bMy" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bMz" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/fitness) -"bMA" = (/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) -"bMB" = (/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) -"bMC" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bMD" = (/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) -"bME" = (/obj/item/device/paicard,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bMF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bMG" = (/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bMH" = (/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bMI" = (/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) -"bMJ" = (/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/solar/fstarboard) -"bMK" = (/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/solar/fstarboard) -"bML" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/solar/fstarboard) -"bMM" = (/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/solar/fstarboard) -"bMN" = (/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/solar/fstarboard) -"bMO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/solar/fstarboard) -"bMP" = (/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/solar/fstarboard) -"bMQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bMR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bMS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bMT" = (/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bMU" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bMV" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bMW" = (/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) -"bMX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bMY" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bMZ" = (/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) -"bNa" = (/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) -"bNb" = (/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) -"bNc" = (/obj/item/weapon/reagent_containers/food/snacks/chocolateegg{desc = "wait what"; name = "easter egg"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bNd" = (/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) -"bNe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bNf" = (/obj/item/stack/sheet/glass/glass{amount = 18},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/asderelict) -"bNg" = (/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) -"bNh" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bNi" = (/turf/simulated/floor/plating,/area/derelictparts/port) -"bNj" = (/obj/item/weapon/cigbutt{pixel_x = 2; pixel_y = 9},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bNk" = (/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) -"bNl" = (/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) -"bNm" = (/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) -"bNn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bNo" = (/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) -"bNp" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/derelictparts/diner) -"bNq" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/diner) -"bNr" = (/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) -"bNs" = (/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) -"bNt" = (/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) -"bNu" = (/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bNv" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bNw" = (/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) -"bNx" = (/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) -"bNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/port) -"bNz" = (/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) -"bNA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/autodrobe,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bNB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/table/woodentable,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bNC" = (/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) -"bND" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bNE" = (/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) -"bNF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bNG" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/hallway/primary/port) -"bNH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/sleep) -"bNI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/sleep) -"bNJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bNK" = (/turf/simulated/floor{icon_state = "neutral"; dir = 9},/area/crew_quarters/fitness) -"bNL" = (/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bNM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bNN" = (/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) -"bNO" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bNP" = (/turf/simulated/floor,/area/crew_quarters/fitness) -"bNQ" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bNR" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bNS" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bNT" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bNU" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bNV" = (/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) -"bNW" = (/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) -"bNX" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/wheatseed,/obj/item/seeds/wheatseed,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bNY" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bNZ" = (/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) -"bOa" = (/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) -"bOb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOc" = (/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) -"bOd" = (/obj/structure/closet,/obj/item/weapon/circuitboard/rdconsole,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOe" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bOf" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bOg" = (/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) -"bOh" = (/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/solar/fstarboard) -"bOi" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/solar/fstarboard) -"bOj" = (/obj/structure/cable,/obj/machinery/power/solar/control{id_tag = "starboardsolar"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/solar/fstarboard) -"bOk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/solar/fstarboard) -"bOl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bOm" = (/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) -"bOn" = (/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) -"bOo" = (/obj/machinery/atmospherics/unary/vent,/turf/simulated/floor/plating/airless,/area) -"bOp" = (/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) -"bOq" = (/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) -"bOr" = (/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) -"bOs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/crowbar,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"bOt" = (/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) -"bOu" = (/obj/structure/sign/poster{icon_state = "poster6"; pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/hallway/primary/port) -"bOv" = (/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) -"bOw" = (/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) -"bOx" = (/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) -"bOy" = (/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) -"bOz" = (/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) -"bOA" = (/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bOB" = (/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) -"bOC" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bOD" = (/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) -"bOE" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bOF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bOG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bOH" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bOI" = (/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) -"bOJ" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bOL" = (/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) -"bOM" = (/obj/structure/closet,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bON" = (/obj/item/weapon/cigbutt{pixel_x = -6; pixel_y = 15},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOO" = (/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) -"bOP" = (/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOQ" = (/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) -"bOR" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bOS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/dice/d20,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bOV" = (/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) -"bOW" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/airless,/area) -"bOX" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/derelictparts/port) -"bOY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bOZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bPa" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bPb" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bPc" = (/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) -"bPd" = (/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) -"bPe" = (/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) -"bPf" = (/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) -"bPg" = (/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) -"bPh" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bPi" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bPj" = (/obj/item/clothing/gloves/boxing,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bPk" = (/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) -"bPl" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/diner) -"bPm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/derelictparts/diner) -"bPn" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/diner) -"bPo" = (/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) -"bPp" = (/obj/item/weapon/stool,/obj/structure/sign/poster{icon_state = "poster7"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bPq" = (/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) -"bPr" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bPs" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bPt" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bPu" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/diner) -"bPv" = (/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) -"bPw" = (/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) -"bPx" = (/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) -"bPy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bPz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bPA" = (/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bPB" = (/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) -"bPC" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bPD" = (/obj/machinery/light{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bPE" = (/obj/machinery/camera{c_tag = "Theatre Stage"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bPF" = (/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) -"bPG" = (/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/crew_quarters/theatre) -"bPH" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bPI" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bPJ" = (/turf/simulated/floor,/area/crew_quarters/theatre) -"bPK" = (/obj/machinery/door/airlock/glass{name = "Theater"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bPL" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/hallway/primary/port) -"bPM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPN" = (/obj/machinery/door/airlock{id_tag = "RDorm3"; name = "Dorm 3"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bPO" = (/obj/machinery/door/airlock{id_tag = "RDorm4"; name = "Dorm 4"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bPP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPQ" = (/obj/structure/table/woodentable,/obj/item/device/violin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/fitness) -"bPR" = (/obj/structure/table/woodentable,/obj/item/device/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPS" = (/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) -"bPT" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bPV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/fitness) -"bPW" = (/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) -"bPX" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bPY" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bPZ" = (/obj/structure/table,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQb" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQd" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wrench,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQe" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQf" = (/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) -"bQg" = (/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) -"bQh" = (/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) -"bQi" = (/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) -"bQj" = (/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) -"bQk" = (/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) -"bQl" = (/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) -"bQm" = (/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) -"bQn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/apderelict) -"bQo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bQp" = (/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) -"bQq" = (/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) -"bQr" = (/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) -"bQs" = (/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) -"bQt" = (/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) -"bQu" = (/turf/simulated/wall,/area/medical/medbay3) -"bQv" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "damaged2"},/area/medical/medbay3) -"bQw" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/medical/medbay3) -"bQx" = (/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/medical/medbay3) -"bQy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bQz" = (/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) -"bQA" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bQB" = (/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) -"bQC" = (/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) -"bQD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bQE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bQF" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bQG" = (/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) -"bQH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bQI" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bQJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bQK" = (/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) -"bQL" = (/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) -"bQM" = (/obj/effect/decal/cleanable/generic,/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bQN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQO" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQP" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bQQ" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/vomit,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQS" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQT" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQU" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQV" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/breadslice,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bQW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bQX" = (/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) -"bQY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bQZ" = (/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) -"bRa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bRb" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bRc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bRd" = (/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) -"bRe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/theatre) -"bRf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/crew_quarters/theatre) -"bRg" = (/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) -"bRh" = (/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"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bRi" = (/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) -"bRj" = (/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) -"bRk" = (/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) -"bRl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{dir = 10; icon_state = "neutral"},/area/crew_quarters/fitness) -"bRm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"bRn" = (/turf/simulated/floor{icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"bRo" = (/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) -"bRp" = (/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) -"bRq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bRr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bRs" = (/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) -"bRt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/crew_quarters/fitness) -"bRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bRv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bRw" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bRx" = (/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) -"bRy" = (/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) -"bRz" = (/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) -"bRA" = (/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) -"bRB" = (/obj/item/stack/rods,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bRC" = (/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) -"bRD" = (/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) -"bRE" = (/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) -"bRF" = (/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) -"bRG" = (/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) -"bRH" = (/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) -"bRI" = (/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) -"bRJ" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bRK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bRL" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorscorched1"},/area/medical/medbay3) -"bRM" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/medical/medbay3) -"bRN" = (/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) -"bRO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bRP" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bRQ" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bRR" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/spacecash,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bRS" = (/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) -"bRT" = (/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) -"bRU" = (/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) -"bRV" = (/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) -"bRW" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bRX" = (/turf/simulated/wall,/area/derelictparts/incinerator) -"bRY" = (/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) -"bRZ" = (/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) -"bSa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bSb" = (/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) -"bSc" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bSe" = (/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bSf" = (/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) -"bSg" = (/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) -"bSh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bSi" = (/obj/item/weapon/cell,/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bSj" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bSk" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/diner) -"bSl" = (/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) -"bSm" = (/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) -"bSn" = (/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) -"bSo" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bSp" = (/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bSq" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bSr" = (/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) -"bSs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor,/area/crew_quarters/theatre) -"bSt" = (/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) -"bSu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"bSv" = (/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) -"bSw" = (/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) -"bSx" = (/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) -"bSy" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bSz" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bSA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) -"bSB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) -"bSC" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"bSD" = (/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bSE" = (/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) -"bSF" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSG" = (/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) -"bSH" = (/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSI" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSJ" = (/obj/map/spawner/maint,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bSK" = (/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) -"bSL" = (/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/medical/medbay3) -"bSM" = (/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/medical/medbay3) -"bSN" = (/turf/simulated/floor{icon_state = "floorscorched1"},/area/medical/medbay3) -"bSO" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/medical/medbay3) -"bSP" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bSQ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{current_temperature = 80; on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bSR" = (/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) -"bSS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bST" = (/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) -"bSU" = (/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) -"bSV" = (/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) -"bSW" = (/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) -"bSX" = (/obj/machinery/atmospherics/unary/tank/toxins{starting_volume = 3200},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/incinerator) -"bSY" = (/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) -"bSZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bTa" = (/obj/machinery/atmospherics/unary/tank/oxygen{starting_volume = 3200},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/incinerator) -"bTb" = (/turf/simulated/wall/r_wall,/area/derelictparts/incinerator) -"bTc" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/incinerator) -"bTd" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/incinerator) -"bTe" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bTf" = (/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) -"bTg" = (/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bTh" = (/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) -"bTi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/diner) -"bTj" = (/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) -"bTk" = (/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/diner) -"bTl" = (/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) -"bTm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/diner) -"bTn" = (/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) -"bTo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/crew_quarters/theatre) -"bTp" = (/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) -"bTq" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bTr" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bTs" = (/obj/machinery/door/airlock{id_tag = "RDorm1"; name = "Dorm 1"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bTt" = (/obj/machinery/door/airlock{id_tag = "RDorm2"; name = "Dorm 2"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bTu" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) -"bTv" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/fitness) -"bTw" = (/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) -"bTx" = (/obj/structure/closet/boxinggloves,/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bTy" = (/obj/structure/closet/masks,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bTz" = (/obj/structure/closet/lasertag/blue,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bTA" = (/obj/structure/closet/lasertag/red,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/fitness) -"bTB" = (/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) -"bTC" = (/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) -"bTD" = (/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) -"bTE" = (/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) -"bTF" = (/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTG" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bTH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTI" = (/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) -"bTJ" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/chips,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTK" = (/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/medbay3) -"bTL" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/medical/medbay3) -"bTM" = (/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/medical/medbay3) -"bTN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Derelict Medbay Lobby"},/turf/simulated/floor{icon_state = "damaged3"},/area/medical/medbay3) -"bTO" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/medical/medbay3) -"bTP" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTR" = (/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/medical/medbay3) -"bTS" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTT" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTU" = (/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/medical/medbay3) -"bTV" = (/mob/living/simple_animal/mouse/gray,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTW" = (/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/medical/medbay3) -"bTX" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/obj/structure/sink{dir = 1; pixel_y = 25},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTY" = (/obj/item/stack/rods,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bTZ" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bUa" = (/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/medical/medbay3) -"bUb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bUc" = (/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/medbay3) -"bUd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bUe" = (/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) -"bUf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bUg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bUh" = (/obj/item/stack/sheet/metal,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/incinerator) -"bUi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/incinerator) -"bUj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bUk" = (/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) -"bUl" = (/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) -"bUm" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/derelictparts/incinerator) -"bUn" = (/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) -"bUo" = (/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) -"bUp" = (/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) -"bUq" = (/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) -"bUr" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bUs" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bUt" = (/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) -"bUu" = (/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) -"bUv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bUw" = (/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) -"bUx" = (/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) -"bUy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/derelictparts/diner) -"bUz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bUA" = (/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) -"bUB" = (/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) -"bUC" = (/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) -"bUD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bUE" = (/obj/structure/rack,/obj/item/device/violin,/obj/item/device/camera,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bUF" = (/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) -"bUG" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/device/piano,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bUH" = (/obj/item/weapon/stool/piano{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bUI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bUJ" = (/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) -"bUK" = (/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) -"bUL" = (/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) -"bUM" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bUN" = (/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) -"bUO" = (/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) -"bUP" = (/obj/machinery/alarm{dir = 4; pixel_x = -23},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bUQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bUR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bUS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bUT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/crew_quarters/fitness) -"bUU" = (/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/fitness) -"bUV" = (/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) -"bUW" = (/obj/item/trash/candy,/obj/structure/window/reinforced{dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUX" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/crate,/obj/item/weapon/storage/bag/plants,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUY" = (/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) -"bUZ" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bVa" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bVb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay3) -"bVc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"bVd" = (/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/medical/medbay3) -"bVe" = (/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/medical/medbay3) -"bVf" = (/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/medical/medbay3) -"bVg" = (/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/medical/medbay3) -"bVh" = (/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/medical/medbay3) -"bVi" = (/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/medical/medbay3) -"bVj" = (/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/medical/medbay3) -"bVk" = (/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/medical/medbay3) -"bVl" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bVm" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"bVn" = (/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/medical/medbay3) -"bVo" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bVp" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bVq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor{icon_state = "floorscorched1"},/area/medical/medbay3) -"bVr" = (/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/medical/medbay3) -"bVs" = (/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) -"bVt" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVu" = (/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVv" = (/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) -"bVw" = (/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) -"bVx" = (/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) -"bVy" = (/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) -"bVz" = (/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) -"bVA" = (/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) -"bVB" = (/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) -"bVC" = (/turf/simulated/wall,/area/crew_quarters/casino) -"bVD" = (/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,/turf/simulated/floor,/area/crew_quarters/casino) -"bVE" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bVF" = (/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) -"bVG" = (/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bVH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bVI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bVJ" = (/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) -"bVK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "redcorner"; dir = 1},/area/crew_quarters/sleep) -"bVL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/crew_quarters/sleep) -"bVM" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bVN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bVO" = (/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) -"bVP" = (/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) -"bVQ" = (/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) -"bVR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bVS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bVT" = (/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) -"bVU" = (/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) -"bVV" = (/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) -"bVW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bVX" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/simulated/floor,/area/crew_quarters/fitness) -"bVY" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/crew_quarters/fitness) -"bVZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/crew_quarters/fitness) -"bWa" = (/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) -"bWb" = (/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) -"bWc" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bWd" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bWe" = (/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) -"bWf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWg" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWh" = (/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) -"bWi" = (/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/medical/medbay3) -"bWj" = (/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/medical/medbay3) -"bWk" = (/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/medical/medbay3) -"bWl" = (/obj/structure/table/reinforced,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bWm" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bWn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bWo" = (/obj/machinery/light_construct/small{dir = 4},/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bWp" = (/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/medical/medbay3) -"bWq" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay3) -"bWr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay3) -"bWs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay3) -"bWt" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bWu" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/medical/medbay3) -"bWv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"bWw" = (/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/medical/medbay3) -"bWx" = (/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) -"bWy" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bWz" = (/obj/structure/rack,/obj/item/clothing/suit/ianshirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bWA" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWB" = (/obj/item/clothing/gloves/black,/obj/machinery/light_construct/small{dir = 1},/obj/item/weapon/light/bulb,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWC" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWD" = (/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) -"bWE" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bWF" = (/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) -"bWG" = (/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) -"bWH" = (/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) -"bWI" = (/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) -"bWJ" = (/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) -"bWK" = (/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) -"bWL" = (/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) -"bWM" = (/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) -"bWN" = (/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) -"bWO" = (/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) -"bWP" = (/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) -"bWQ" = (/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) -"bWR" = (/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) -"bWS" = (/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) -"bWT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/derelictparts/port) -"bWU" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bWV" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/device/flashlight/flare,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bWW" = (/obj/item/stack/rods,/obj/item/stack/sheet/glass/glass,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWX" = (/obj/effect/decal/cleanable/ash,/obj/structure/vendomatpack/hydronutrients,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bWY" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/minihoe,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWZ" = (/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) -"bXa" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXb" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXc" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXd" = (/obj/structure/table/woodentable/poker,/obj/item/clothing/mask/cigarette/pipe,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXe" = (/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXf" = (/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) -"bXg" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"bXh" = (/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXi" = (/turf/simulated/floor,/area/crew_quarters/sleep) -"bXj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bXk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bXm" = (/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) -"bXn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXs" = (/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bXt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bXu" = (/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) -"bXv" = (/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) -"bXw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bXx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bXy" = (/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) -"bXz" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/fitness) -"bXA" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor,/area/crew_quarters/fitness) -"bXB" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bXC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bXD" = (/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) -"bXE" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bXF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bXG" = (/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) -"bXH" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bXI" = (/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) -"bXJ" = (/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"bXK" = (/turf/simulated/floor{icon_state = "damaged3"},/area/medical/medbay3) -"bXL" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/medical/medbay3) -"bXM" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/medical/medbay3) -"bXN" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay3) -"bXO" = (/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/medical/medbay3) -"bXP" = (/turf/simulated/floor{icon_state = "damaged2"},/area/medical/medbay3) -"bXQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bXR" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/medical/medbay3) -"bXS" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bXT" = (/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) -"bXU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bXV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXW" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXX" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXY" = (/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) -"bXZ" = (/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) -"bYa" = (/obj/item/device/assembly/igniter,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYb" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bYc" = (/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) -"bYd" = (/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) -"bYe" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYf" = (/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) -"bYg" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor,/area/derelictparts/port) -"bYh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/port) -"bYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/derelictparts/port) -"bYj" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYk" = (/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) -"bYl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYm" = (/obj/item/seeds/cornseed,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYn" = (/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) -"bYo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bYp" = (/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) -"bYq" = (/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) -"bYr" = (/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) -"bYs" = (/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) -"bYt" = (/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) -"bYu" = (/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"bYv" = (/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) -"bYw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bYx" = (/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) -"bYy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYz" = (/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) -"bYA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bYD" = (/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) -"bYE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYG" = (/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/simulated/floor,/area/crew_quarters/fitness) -"bYH" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bYI" = (/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) -"bYJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bYK" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bYL" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/crew_quarters/fitness) -"bYM" = (/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) -"bYN" = (/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) -"bYO" = (/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) -"bYP" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/medical/medbay3) -"bYQ" = (/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/medical/medbay3) -"bYR" = (/obj/structure/table/reinforced,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/medical/medbay3) -"bYS" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/medical/medbay3) -"bYT" = (/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bYU" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"bYV" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"bYW" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"bYX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/medical/medbay3) -"bYY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"bYZ" = (/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) -"bZa" = (/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) -"bZb" = (/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) -"bZc" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZd" = (/obj/structure/mopbucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bZf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bZj" = (/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) -"bZk" = (/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) -"bZl" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bZm" = (/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bZn" = (/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) -"bZo" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bZp" = (/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) -"bZq" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/port) -"bZr" = (/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) -"bZs" = (/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) -"bZt" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZu" = (/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) -"bZv" = (/obj/item/seeds/cherryseed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bZw" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZx" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bZy" = (/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) -"bZz" = (/obj/structure/table/woodentable/poker,/obj/item/clothing/head/fedora,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZA" = (/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) -"bZB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bZC" = (/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) -"bZD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"bZE" = (/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) -"bZF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"bZG" = (/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"bZH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/incinerator) -"bZI" = (/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) -"bZJ" = (/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) -"bZK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"bZL" = (/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) -"bZM" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bZN" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bZO" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bZP" = (/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) -"bZQ" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/crew_quarters/fitness) -"bZR" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/crew_quarters/fitness) -"bZS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/crew_quarters/fitness) -"bZT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bZU" = (/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) -"bZV" = (/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) -"bZW" = (/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) -"bZX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/apderelict) -"bZY" = (/obj/structure/sink{pixel_y = 27},/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/apderelict) -"bZZ" = (/obj/item/weapon/cigbutt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/derelictparts/apderelict) -"caa" = (/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) -"cab" = (/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) -"cac" = (/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) -"cad" = (/obj/item/weapon/wirecutters,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cae" = (/turf/simulated/wall/r_wall,/area/medical/medbay3) -"caf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/medical/medbay3) -"cag" = (/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/medical/medbay3) -"cah" = (/turf/simulated/floor{icon_state = "damaged5"},/area/medical/medbay3) -"cai" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/medical/medbay3) -"caj" = (/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) -"cak" = (/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) -"cal" = (/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) -"cam" = (/obj/structure/cable,/obj/machinery/power/solar/panel/tracker,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"can" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelictparts/port) -"cao" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cap" = (/obj/item/stack/rods,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"caq" = (/obj/item/weapon/circuitboard/air_alarm,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/derelictparts/port) -"car" = (/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) -"cas" = (/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) -"cat" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/port) -"cau" = (/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) -"cav" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/weapon/spacecash,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"caw" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cax" = (/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) -"cay" = (/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) -"caz" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"caA" = (/obj/structure/closet,/obj/item/device/multitool,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"caB" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"caC" = (/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"caD" = (/obj/item/weapon/spacecash,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"caE" = (/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) -"caF" = (/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) -"caG" = (/obj/item/weapon/stock_parts/capacitor{pixel_x = -6; pixel_y = -6},/turf/simulated/floor/plating,/area/derelictparts/port) -"caH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"caI" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/port) -"caJ" = (/obj/structure/table,/obj/item/trash/cheesie,/obj/item/clothing/gloves/black,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"caK" = (/obj/structure/table/woodentable/poker,/obj/item/weapon/lighter/zippo,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caL" = (/obj/structure/table/woodentable/poker,/obj/item/toy/cards,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caM" = (/obj/structure/table/woodentable/poker,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caN" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caP" = (/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) -"caQ" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/casino) -"caS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"caT" = (/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) -"caU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"caV" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"caW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/incinerator) -"caX" = (/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) -"caY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"caZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cba" = (/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) -"cbb" = (/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) -"cbc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbd" = (/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) -"cbe" = (/obj/item/clothing/gloves/black,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/apderelict) -"cbf" = (/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) -"cbg" = (/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) -"cbh" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/apderelict) -"cbi" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/apderelict) -"cbj" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/apderelict) -"cbk" = (/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/medical/medbay3) -"cbl" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/medical/medbay3) -"cbm" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/medical/medbay3) -"cbn" = (/obj/structure/sink{pixel_y = 27},/turf/simulated/floor{icon_state = "floorscorched1"},/area/medical/medbay3) -"cbo" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged3"},/area/medical/medbay3) -"cbp" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 8; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plating,/area/medical/medbay3) -"cbq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged5"},/area/medical/medbay3) -"cbr" = (/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/medical/medbay3) -"cbs" = (/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/medical/medbay3) -"cbt" = (/obj/structure/table,/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/medical/medbay3) -"cbu" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/medical/medbay3) -"cbv" = (/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/medical/medbay3) -"cbw" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor,/area/science/chargebay) -"cbx" = (/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) -"cby" = (/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) -"cbz" = (/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) -"cbA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cbC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cbD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cbE" = (/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) -"cbF" = (/obj/item/weapon/stock_parts/matter_bin,/obj/structure/grille/broken,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cbG" = (/obj/item/clothing/gloves/black,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbH" = (/obj/item/weapon/stool,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cbI" = (/obj/item/weapon/lighter{icon_state = "lighter-r"},/obj/item/weapon/lighter/random,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cbJ" = (/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/port) -"cbK" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/derelictparts/port) -"cbL" = (/obj/item/trash/chips,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cbM" = (/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) -"cbN" = (/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) -"cbO" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cbP" = (/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) -"cbQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cbR" = (/obj/machinery/door/airlock{id_tag = "BDorm1"; name = "Dorm 1"},/turf/simulated/floor,/area/crew_quarters/sleep) -"cbS" = (/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"cbT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cbU" = (/obj/machinery/door/airlock{id_tag = "BDorm2"; name = "Dorm 2"},/turf/simulated/floor,/area/crew_quarters/sleep) -"cbV" = (/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) -"cbW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"cbX" = (/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) -"cbY" = (/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) -"cbZ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"cca" = (/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"ccb" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) -"ccc" = (/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) -"ccd" = (/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) -"cce" = (/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) -"ccf" = (/obj/machinery/door/airlock{name = "Unit 1"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ccg" = (/obj/machinery/door/airlock{name = "Unit 2"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cch" = (/obj/machinery/door/airlock{name = "Unit 3"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/apderelict) -"cci" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ccj" = (/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) -"cck" = (/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plating,/area/medical/medbay3) -"ccl" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/medical/medbay3) -"ccm" = (/turf/simulated/floor{icon_state = "floorscorched2"},/area/medical/medbay3) -"ccn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"cco" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"ccp" = (/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/medical/medbay3) -"ccq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"ccr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/medical/medbay3) -"ccs" = (/turf/simulated/wall,/area) -"cct" = (/turf/simulated/wall,/area/derelictparts/aft) -"ccu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/aft) -"ccv" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccw" = (/obj/item/weapon/caution/cone,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccx" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccy" = (/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) -"ccz" = (/obj/structure/bed,/obj/effect/decal/cleanable/dirt,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccA" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gib3"},/turf/simulated/floor/plating,/area/derelictparts/port) -"ccC" = (/obj/effect/decal/cleanable/generic,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ccD" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/raisins,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccE" = (/obj/item/weapon/stool,/obj/machinery/newscaster{pixel_x = -27},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/port) -"ccG" = (/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) -"ccH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"ccI" = (/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) -"ccJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccK" = (/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) -"ccL" = (/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) -"ccM" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"ccN" = (/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) -"ccO" = (/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) -"ccP" = (/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) -"ccQ" = (/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) -"ccR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"ccS" = (/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) -"ccT" = (/obj/machinery/camera{c_tag = "Civilian Hall South"; dir = 8},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"ccU" = (/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) -"ccV" = (/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) -"ccW" = (/turf/simulated/wall,/area/crew_quarters/locker) -"ccX" = (/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) -"ccY" = (/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) -"ccZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cda" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cdb" = (/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) -"cdc" = (/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) -"cdd" = (/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) -"cde" = (/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) -"cdf" = (/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) -"cdg" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cdh" = (/obj/machinery/chem_master{icon_state = "mixer0_nopower"},/turf/simulated/floor{icon_state = "yellow"; dir = 10},/area/medical/medbay3) -"cdi" = (/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/medical/medbay3) -"cdj" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/medical/medbay3) -"cdk" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/medical/medbay3) -"cdl" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cdm" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor{icon_state = "damaged5"},/area/medical/medbay3) -"cdn" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"cdo" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cdp" = (/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cdq" = (/obj/effect/decal/cleanable/blood{icon_state = "floor5"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid1"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cdr" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating/airless,/area) -"cds" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/hatchet,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cdt" = (/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) -"cdu" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cdv" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cdw" = (/obj/structure/rack,/obj/item/weapon/circuitboard/autolathe,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdx" = (/obj/structure/rack,/obj/item/weapon/circuitboard/arcade,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cdy" = (/obj/structure/rack,/obj/item/weapon/circuitboard/atmos_alert,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdz" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdA" = (/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) -"cdB" = (/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) -"cdC" = (/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) -"cdD" = (/obj/item/weapon/newspaper,/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdE" = (/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) -"cdF" = (/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) -"cdG" = (/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) -"cdH" = (/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) -"cdI" = (/turf/simulated/wall,/area/maintenance/vault) -"cdJ" = (/obj/item/device/assembly/timer,/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"cdK" = (/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cdL" = (/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cdM" = (/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) -"cdN" = (/obj/machinery/igniter{icon_state = "igniter0"; id_tag = "Incinerator"; on = 0},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"cdO" = (/obj/machinery/vending/hatdispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 9},/area/crew_quarters/locker) -"cdP" = (/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) -"cdQ" = (/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) -"cdR" = (/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) -"cdS" = (/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) -"cdT" = (/obj/machinery/vending/groans,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"cdU" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"cdV" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/locker) -"cdW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/fitness) -"cdX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/fitness) -"cdY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cdZ" = (/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cea" = (/obj/structure/closet/secure_closet/chemical,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/medical/medbay3) -"ceb" = (/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"cec" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"ced" = (/obj/structure/table,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor/plating,/area/medical/medbay3) -"cee" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cef" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"ceg" = (/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/medical/medbay3) -"ceh" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "damaged3"},/area/medical/medbay3) -"cei" = (/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/medical/medbay3) -"cej" = (/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/medical/medbay3) -"cek" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cel" = (/obj/item/weapon/crowbar,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cem" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/circuitboard/destructive_analyzer,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cen" = (/obj/structure/door_assembly/door_assembly_ext{density = 0},/turf/simulated/floor/plating/airless,/area) -"ceo" = (/obj/item/weapon/wrench,/turf/simulated/floor/plating/airless,/area) -"cep" = (/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) -"ceq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/carbon/monkey,/turf/simulated/floor,/area/derelictparts/aft) -"cer" = (/mob/living/carbon/monkey{desc = "The legend still lives!"; name = "Deempisi"},/turf/simulated/floor,/area/derelictparts/aft) -"ces" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cet" = (/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) -"ceu" = (/obj/effect/decal/cleanable/ash,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cev" = (/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/port) -"cew" = (/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) -"cex" = (/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) -"cey" = (/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) -"cez" = (/turf/simulated/wall,/area/janitor) -"ceA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/janitor) -"ceB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/janitor) -"ceC" = (/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) -"ceD" = (/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) -"ceE" = (/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) -"ceF" = (/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) -"ceG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/vault) -"ceH" = (/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) -"ceI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/vault) -"ceJ" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/vault) -"ceK" = (/obj/machinery/computer/secure_data/detective_computer,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/storage/nuke_storage) -"ceL" = (/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) -"ceM" = (/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) -"ceN" = (/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) -"ceO" = (/obj/machinery/door/airlock{id_tag = "BDorm3"; name = "Dorm 3"},/turf/simulated/floor,/area/crew_quarters/sleep) -"ceP" = (/obj/machinery/door/airlock{id_tag = "BDorm4"; name = "Dorm 4"},/turf/simulated/floor,/area/crew_quarters/sleep) -"ceQ" = (/obj/machinery/vending/suitdispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"ceR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/crew_quarters/locker) -"ceS" = (/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) -"ceT" = (/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) -"ceU" = (/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) -"ceV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/locker) -"ceW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"ceX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/locker) -"ceY" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ceZ" = (/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) -"cfa" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfb" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cfd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cfe" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cff" = (/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) -"cfg" = (/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) -"cfh" = (/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) -"cfi" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfj" = (/obj/item/trash/sosjerky,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cfk" = (/obj/item/weapon/cigbutt{pixel_x = -8; pixel_y = 12},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfl" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfm" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfn" = (/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) -"cfo" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cfp" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cfq" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cfr" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/turf/simulated/floor{icon_state = "floorscorched1"},/area/medical/medbay3) -"cfs" = (/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) -"cft" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfu" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cfv" = (/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) -"cfw" = (/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) -"cfx" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/derelictparts/aft) -"cfy" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/turf/simulated/floor,/area/derelictparts/aft) -"cfz" = (/obj/item/seeds/bananaseed,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/derelictparts/aft) -"cfA" = (/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) -"cfB" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/port) -"cfC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cfD" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cfE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cfF" = (/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) -"cfG" = (/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) -"cfH" = (/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) -"cfI" = (/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) -"cfJ" = (/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) -"cfK" = (/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) -"cfL" = (/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) -"cfM" = (/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) -"cfN" = (/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) -"cfO" = (/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) -"cfP" = (/obj/structure/bed/chair/vehicle/janicart,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/janitor) -"cfQ" = (/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) -"cfR" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cfS" = (/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) -"cfT" = (/obj/item/weapon/crowbar,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/vault) -"cfU" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/maintenance/vault) -"cfV" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/vault) -"cfW" = (/obj/structure/grille,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/vault) -"cfX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"cfY" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/vault) -"cfZ" = (/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) -"cga" = (/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) -"cgb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cgc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "dark vault full"},/area/storage/nuke_storage) -"cgd" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cge" = (/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) -"cgf" = (/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) -"cgg" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/shoedispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cgh" = (/turf/simulated/floor,/area/crew_quarters/locker) -"cgi" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor,/area/crew_quarters/locker) -"cgj" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor,/area/crew_quarters/locker) -"cgk" = (/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) -"cgl" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cgm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker) -"cgn" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cgo" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cgp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cgq" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/taperecorder,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgr" = (/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) -"cgs" = (/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) -"cgt" = (/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) -"cgu" = (/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) -"cgv" = (/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) -"cgw" = (/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) -"cgx" = (/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) -"cgy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgA" = (/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) -"cgB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgC" = (/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/medical/medbay3) -"cgD" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "damaged2"},/area/medical/medbay3) -"cgE" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibleg"},/turf/simulated/floor{icon_state = "damaged1"},/area/medical/medbay3) -"cgF" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cgG" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"cgH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cgI" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgJ" = (/obj/effect/decal/remains/robot{icon_state = "gib3"},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgK" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area) -"cgL" = (/obj/item/device/flashlight,/turf/simulated/floor/plating/airless,/area) -"cgM" = (/obj/machinery/light{dir = 8},/mob/living/carbon/monkey,/turf/simulated/floor,/area/derelictparts/aft) -"cgN" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/derelictparts/aft) -"cgO" = (/obj/item/seeds/bananaseed,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/derelictparts/aft) -"cgP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgQ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cgR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgS" = (/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) -"cgT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgU" = (/obj/effect/decal/remains/robot,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgV" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgW" = (/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) -"cgX" = (/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) -"cgY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/janitor) -"cgZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/janitor) -"cha" = (/turf/simulated/floor,/area/janitor) -"chb" = (/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) -"chc" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/vault) -"chd" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/plating,/area/maintenance/vault) -"che" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/vault) -"chf" = (/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"chg" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/vault) -"chh" = (/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) -"chi" = (/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) -"chj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"chk" = (/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) -"chl" = (/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) -"chm" = (/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) -"chn" = (/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) -"cho" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/sleep) -"chp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"chq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"chr" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"chs" = (/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cht" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor,/area/crew_quarters/locker) -"chu" = (/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) -"chv" = (/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) -"chw" = (/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) -"chx" = (/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) -"chy" = (/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) -"chz" = (/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) -"chA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"chB" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"chC" = (/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) -"chD" = (/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) -"chE" = (/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) -"chF" = (/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) -"chG" = (/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/apderelict) -"chH" = (/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) -"chI" = (/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) -"chJ" = (/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) -"chK" = (/obj/item/weapon/shard{icon_state = "small"},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chL" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"chM" = (/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/medical/medbay3) -"chN" = (/obj/structure/morgue,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/medical/medbay3) -"chO" = (/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/medical/medbay3) -"chP" = (/mob/living/simple_animal/hostile/giant_spider/hunter{health = 60},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/medical/medbay3) -"chQ" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/turf/simulated/floor{icon_state = "dark"},/area/medical/medbay3) -"chR" = (/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) -"chS" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"chT" = (/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"chU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/derelictparts/aft) -"chV" = (/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) -"chW" = (/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) -"chX" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"chY" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"chZ" = (/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/port) -"cia" = (/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/plating,/area/derelictparts/port) -"cib" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cic" = (/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) -"cid" = (/obj/machinery/light_switch{pixel_x = -5; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/janitor) -"cie" = (/obj/item/weapon/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/janitor) -"cif" = (/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) -"cig" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) -"cih" = (/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) -"cii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/vault) -"cij" = (/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) -"cik" = (/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) -"cil" = (/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) -"cim" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/trash/raisins,/turf/simulated/floor/plating,/area/maintenance/vault) -"cin" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cio" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cip" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"ciq" = (/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) -"cir" = (/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) -"cis" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cit" = (/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) -"ciu" = (/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) -"civ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"ciw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/sleep) -"cix" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"ciy" = (/obj/machinery/door/airlock{id_tag = "BDorm5"; name = "Dorm 5"},/turf/simulated/floor,/area/crew_quarters/sleep) -"ciz" = (/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) -"ciA" = (/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) -"ciB" = (/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) -"ciC" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/crew_quarters/locker) -"ciD" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"ciE" = (/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) -"ciF" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ciG" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/item/device/assembly/signaler,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/medical/medbay3) -"ciI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciJ" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciK" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciL" = (/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) -"ciM" = (/obj/item/weapon/weldingtool/hugetank,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ciN" = (/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) -"ciO" = (/obj/structure/grille,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor/plating,/area/derelictparts/aft) -"ciP" = (/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) -"ciQ" = (/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/vomit,/turf/simulated/floor/plating,/area/derelictparts/port) -"ciR" = (/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) -"ciS" = (/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) -"ciT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ciU" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/folder,/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/port) -"ciV" = (/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) -"ciW" = (/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) -"ciX" = (/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,/turf/simulated/floor/plating,/area/janitor) -"ciY" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"ciZ" = (/turf/simulated/wall/r_wall,/area/teleporter) -"cja" = (/obj/item/stack/rods,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/vault) -"cjb" = (/obj/structure/closet/secure_closet/freezer/money,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/storage/nuke_storage) -"cjc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "dark-markings"},/area/storage/nuke_storage) -"cjd" = (/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) -"cje" = (/turf/simulated/floor{icon_state = "dark-markings"},/area/storage/nuke_storage) -"cjf" = (/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) -"cjg" = (/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) -"cjh" = (/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) -"cji" = (/turf/simulated/floor{icon_state = "blue"; dir = 10},/area/crew_quarters/sleep) -"cjj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/crew_quarters/sleep) -"cjk" = (/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) -"cjl" = (/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) -"cjm" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{dir = 10; icon_state = "neutral"},/area/crew_quarters/locker) -"cjn" = (/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"cjo" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"cjp" = (/obj/structure/closet/secure_closet/personal,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"cjq" = (/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) -"cjr" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"cjs" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/locker) -"cjt" = (/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) -"cju" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cjv" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cjw" = (/obj/item/stack/rods,/obj/structure/grille/broken,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cjz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cjA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/trash/candy,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjB" = (/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) -"cjC" = (/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) -"cjD" = (/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjE" = (/obj/machinery/space_heater,/obj/item/device/assembly/timer,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cjF" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area) -"cjG" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"cjH" = (/obj/structure/rack,/obj/item/device/radio{pixel_y = 6},/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/aft) -"cjI" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjJ" = (/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) -"cjK" = (/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) -"cjL" = (/obj/item/weapon/broken_bottle,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjM" = (/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) -"cjN" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cjO" = (/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) -"cjP" = (/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjQ" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cjR" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjS" = (/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) -"cjT" = (/obj/structure/rack,/obj/item/device/radio{pixel_y = 6},/obj/item/weapon/crowbar/red,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 22},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"cjV" = (/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) -"cjW" = (/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) -"cjX" = (/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) -"cjY" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/janitor) -"cjZ" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plating,/area/teleporter) -"cka" = (/obj/machinery/teleport/station,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plating,/area/teleporter) -"ckb" = (/obj/machinery/light{dir = 1},/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/teleporter) -"ckc" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/teleporter) -"ckd" = (/obj/machinery/shieldwallgen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/teleporter) -"cke" = (/obj/structure/table,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/vault) -"ckf" = (/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) -"ckg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/port) -"ckh" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cki" = (/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) -"ckj" = (/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) -"ckk" = (/turf/simulated/wall/r_wall,/area/security/armory) -"ckl" = (/turf/simulated/wall/r_wall,/area/security/main) -"ckm" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ckn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cko" = (/obj/item/device/flashlight,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"ckp" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ckq" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ckr" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cks" = (/obj/effect/decal/remains/robot,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckt" = (/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"cku" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckv" = (/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) -"ckw" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckx" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"cky" = (/obj/item/weapon/newspaper,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"ckz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckA" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"ckB" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"ckC" = (/turf/simulated/wall,/area/library) -"ckD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/library) -"ckE" = (/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) -"ckF" = (/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) -"ckG" = (/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) -"ckH" = (/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) -"ckI" = (/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) -"ckJ" = (/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) -"ckK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/teleporter) -"ckL" = (/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) -"ckM" = (/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) -"ckN" = (/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) -"ckO" = (/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) -"ckP" = (/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) -"ckQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"ckR" = (/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) -"ckS" = (/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) -"ckT" = (/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) -"ckU" = (/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) -"ckV" = (/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) -"ckW" = (/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) -"ckX" = (/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) -"ckY" = (/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) -"ckZ" = (/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) -"cla" = (/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) -"clb" = (/obj/machinery/flasher/portable,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"clc" = (/obj/machinery/deployable/barrier,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cld" = (/obj/machinery/deployable/barrier,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cle" = (/obj/structure/flora/pottedplant/random,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"clf" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"clg" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"clh" = (/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cli" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"clj" = (/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) -"clk" = (/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) -"cll" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/aft) -"clm" = (/obj/item/stack/sheet/glass/glass{amount = 7},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"cln" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/aft) -"clo" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/aft) -"clp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/derelictparts/aft) -"clq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/aft) -"clr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/derelictparts/aft) -"cls" = (/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) -"clt" = (/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) -"clu" = (/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) -"clv" = (/obj/structure/table/woodentable,/obj/machinery/computer/library/checkout,/obj/machinery/light_switch{pixel_x = -28},/turf/simulated/floor/wood,/area/library) -"clw" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) -"clx" = (/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) -"cly" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor/carpet,/area/library) -"clz" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) -"clA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/library) -"clB" = (/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) -"clC" = (/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) -"clD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port) -"clE" = (/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) -"clF" = (/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) -"clG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"clH" = (/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) -"clI" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/vault) -"clJ" = (/turf/simulated/floor/plating,/area/maintenance/vault) -"clK" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) -"clL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/aft) -"clM" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/aft) -"clN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clS" = (/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) -"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clU" = (/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clV" = (/obj/item/weapon/wrench,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/security/armory) -"clW" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/security/armory) -"clX" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/security/armory) -"clY" = (/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) -"clZ" = (/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) -"cma" = (/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) -"cmb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmc" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmd" = (/turf/simulated/wall/r_wall,/area/security/interrogation) -"cme" = (/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) -"cmf" = (/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) -"cmg" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cmh" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area) -"cmi" = (/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) -"cmj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cmk" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"cml" = (/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) -"cmm" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cmn" = (/obj/item/weapon/cell/hyper,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"cmo" = (/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.